Ir para conteúdo
  • 0

Vip na account e não em char especifico.


curruwilliam

Pergunta

15 respostass a esta questão

Posts Recomendados

  • 0

Troca o código lá por esse:

 

local principal = {x = 500, y = 300, z = 7} -- Aqui poe as coordenadas do templo principal[/color]
function onLogin(cid)
if vip.hasVip(cid) == false and isPlayer(cid) then
setPlayerPromotionLevel(cid, 1)
doPlayerSendTextMessage(cid,27,"Sua VIP acabou, donate para ter mais acessos!")
doTeleportThing(cid,principal)
elseif vip.hasVip(cid) == true and isPlayer(cid) then
setPlayerPromotionLevel(cid, 2)
end
return true
end

 

Só muda as coordenadas no começo do código!

Editado por Roksas
Link para o comentário
Compartilhar em outros sites

  • 0

Não foi isso que perguntei, perguntei de qual dos erros você ta falando?

Do que ta escrito vocations, o first items, qual?

Link para o comentário
Compartilhar em outros sites

  • 0

firstitems.lua

local firstItems = {}
firstItems[0] =
{
2173,
2525,
3965,
2124,
2457,
2647,
2643
}
firstItems[1] =
{
2173,
2525,
2190,
2124,
2457,
2647,
2643
}
firstItems[2] =
{
2173,
2525,
2182,
2124,
2457,
2647,
2643
}
firstItems[3] =
{
2173,
2525,
2399,
2124,
2457,
2647,
2643
}
firstItems[4] =
{
2173,
2525,
2428,
2124,
2457,
2647,
2643
}
function onLogin(cid)
if getPlayerStorageValue(cid, 30001) == -1 then
for i = 1, table.maxn(firstItems[getPlayerVocation(cid)]) do
doPlayerAddItem(cid, firstItems[getPlayerVocation(cid)][i], 1)
end
if getPlayerSex(cid) == 0 then
doPlayerAddItem(cid, 2463, 1)
else
doPlayerAddItem(cid, 2463, 1)
end
local bag = doPlayerAddItem(cid, 11235, 1)
doAddContainerItem(bag, 2160, 3)
doAddContainerItem(bag, 2554, 1)
doAddContainerItem(bag, 2120, 1)
doAddContainerItem(bag, 7618, 1)
doAddContainerItem(bag, 8602, 1)
setPlayerStorageValue(cid, 30001, 1)
end
return TRUE
end

 

Seria algo aqui?:

for i = 1, table.maxn(firstItems[getPlayerVocation(cid)]) do

Editado por curruwilliam
Link para o comentário
Compartilhar em outros sites

  • 0

Tenta trocar por:

 

 

local firstItems = {}

firstItems[0] =

{

2173,

2525,

3965,

2124,

2457,

2647,

2643

}

firstItems[1] =

{

2173,

2525,

2190,

2124,

2457,

2647,

2643

}

firstItems[2] =

{

2173,

2525,

2182,

2124,

2457,

2647,

2643

}

firstItems[3] =

{

2173,

2525,

2399,

2124,

2457,

2647,

2643

}

firstItems[4] =

{

2173,

2525,

2428,

2124,

2457,

2647,

2643

}

function onLogin(cid)

if getPlayerStorageValue(cid, 30001) == -1 and isPlayer(cid) then

for i = 1, table.maxn(firstItems[getPlayerVocation(cid)]) do

doPlayerAddItem(cid, firstItems[getPlayerVocation(cid)], 1)

end

if getPlayerSex(cid) == 0 then

doPlayerAddItem(cid, 2463, 1)

else

doPlayerAddItem(cid, 2463, 1)

end

local bag = doPlayerAddItem(cid, 11235, 1)

doAddContainerItem(bag, 2160, 3)

doAddContainerItem(bag, 2554, 1)

doAddContainerItem(bag, 2120, 1)

doAddContainerItem(bag, 7618, 1)

doAddContainerItem(bag, 8602, 1)

setPlayerStorageValue(cid, 30001, 1)

end

return TRUE

end

 

 

Depois reinicia o sv

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...