Ir para conteúdo

[Encerrado] Itens iniciais não aparecem!


lokzina2

Posts Recomendados

Olá pessoal , tenho tido um problema muito chato , ja tem o arquivo firstitems.lua e outro .xml mais mesmo assim , toda vez que cria um novo char ele começa sem item algum. Oque será que pode ser? Se alguem puder me ajudar , obrigado .

Link para o comentário
Compartilhar em outros sites

Aqui o .lua

 

function onLogin(cid)
if getPlayerGroupId(cid) == 1 and getPlayerStorageValue(cid, 50000) == -1 then
 if isSorcerer(cid) then
  local bag = doPlayerAddItem(cid, 9774, 1)

  doAddContainerItem(bag, 2120, 1)
  doAddContainerItem(bag, 2554, 1)
  doAddContainerItem(bag, 2152, 20)

  doPlayerAddItem(cid, 2525, 1)
  doPlayerAddItem(cid, 2190, 1)
  doPlayerAddItem(cid, 2463, 1)
  doPlayerAddItem(cid, 2457, 1)
  doPlayerAddItem(cid, 2647, 1)
  doPlayerAddItem(cid, 2643, 1)
 setPlayerStorageValue(cid, 50000, 1)
 elseif isDruid(cid) then
  local bag = doPlayerAddItem(cid, 9774, 1)
  doAddContainerItem(bag, 2120, 1)
  doAddContainerItem(bag, 2554, 1)
  doAddContainerItem(bag, 2152, 20)

  doPlayerAddItem(cid, 2525, 1)
  doPlayerAddItem(cid, 2182, 1)
  doPlayerAddItem(cid, 2463, 1)
  doPlayerAddItem(cid, 2457, 1)
  doPlayerAddItem(cid, 2647, 1)
  doPlayerAddItem(cid, 2643, 1)
  setPlayerStorageValue(cid, 50000, 1)
 elseif isPaladin(cid) then
  local bag = doPlayerAddItem(cid, 9774, 1)
  doAddContainerItem(bag, 2120, 1)
  doAddContainerItem(bag, 2554, 1)
  doAddContainerItem(bag, 2152, 20)

  doPlayerAddItem(cid, 2389, 3)
  doPlayerAddItem(cid, 2525, 1)
  doPlayerAddItem(cid, 2457, 1)
  doPlayerAddItem(cid, 2643, 1)
  doPlayerAddItem(cid, 2647, 1)
			  doPlayerAddItem(cid, 2463, 1)
  setPlayerStorageValue(cid, 50000, 1)
 elseif isKnight(cid) then
  local bag = doPlayerAddItem(cid, 9774, 1)
  doAddContainerItem(bag, 2120, 1)
  doAddContainerItem(bag, 2554, 1)
  doAddContainerItem(bag, 2152, 20)
  doAddContainerItem(bag, 8601, 1)
  doAddContainerItem(bag, 2383, 1)
  doAddContainerItem(bag, 2417, 1)  


		 doPlayerAddItem(cid, 2525, 1)
  doPlayerAddItem(cid, 2463, 1)
  doPlayerAddItem(cid, 2457, 1)
  doPlayerAddItem(cid, 2647, 1)
  doPlayerAddItem(cid, 2643, 1)
  setPlayerStorageValue(cid, 50000, 1)
 end
end
 return TRUE
end

 

e o .xml

 

<?xml version="1.0" encoding="UTF-8"?>
<mod name="First Items" version="1.0" author="The Forgotten Server" contact="otland.net" enabled="no">
<config name="firstitems_config"><![CDATA[
 config = {
  storage = 30001,
  items = {2050, 2382}
 }
]]></config>
<event type="login" name="FirstItems" event="buffer"><![CDATA[
 domodlib('firstitems_config')
 if(getPlayerStorageValue(cid, config.storage) > 0) then
  return
 end
 for _, id in ipairs(config.items) do
  doPlayerAddItem(cid, id, 1)
 end  if(getPlayerSex(cid) == PLAYERSEX_FEMALE) then
  doPlayerAddItem(cid, 2651, 1)
 else
  doPlayerAddItem(cid, 2650, 1)
 end
 doAddContainerItem(doPlayerAddItem(cid, 1987, 1), 2674, 1)
 setPlayerStorageValue(cid, config.storage, 1)
]]></event>
</mod>

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

  • 4 weeks later...
  • 5 years later...
A questão neste tópico de suporte foi encerrada por falta de respostas. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta.

+ Caso a dúvida não tenha sido resolvida você poderá criar outro tópico solicitando ajuda.
* Lembre-se que é permitido dar UP no tópico a cada 24 horas para assim o destacar e manter movimentado.
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...