Ir para conteúdo

Script Simples! Vale Rep+


Igorzera

Posts Recomendados

È o seguinte, tenho esse script aki

 

function onSay(cid, words, param)

if getPlayerVocation(cid) == 1 and 2 then

if getPlayerItemCount(cid,9971) >= 1 then

if getPlayerSkill(cid, 5) <= 350 then

doPlayerRemoveItem(cid,9971,3)

doPlayerSetSkill(cid, SKILL_SHIELD, getPlayerSkillLevel(cid, SKILL_SHIELD)+1)

else

doPlayerSendTextMessage(cid, TALKTYPE_ORANGE_1, "Você tem o skill full.")

return true

end

else

doPlayerSendTextMessage(cid, TALKTYPE_ORANGE_1, "Você não tem barras de ouro suficientes.")

return true

end

else

doPlayerSendTextMessage(cid, TALKTYPE_ORANGE_1, "Você é bugado.")

return true

end

 

end

 

Eh quero que mude lá nas vocações coloca pras vocações numero 1,2 e 15

Valendo REP+ em galera, obrigado.

Link para o comentário
Compartilhar em outros sites

function onSay(cid, words, param)
   local voc = (1, 2, 15}
   if getPlayerVocation(cid) == 1 and 2 then
   if isInArray(voc, getPlayerVocation(cid)) == true then
   if getPlayerItemCount(cid, 9971) >= 1 then
   if getPlayerSkill(cid, 5) <= 350 then
      doPlayerRemoveItem(cid, 9971, 3)
      doPlayerSetSkill(cid, SKILL_SHIELD, getPlayerSkillLevel(cid, SKILL_SHIELD)+1)
   else
      doPlayerSendTextMessage(cid, TALKTYPE_ORANGE_1, "Você tem o skill full.")
      return true
   end
      else
          doPlayerSendTextMessage(cid, TALKTYPE_ORANGE_1, "Você não tem barras de ouro suficientes.")
      return true
   end
      else
          doPlayerSendTextMessage(cid, TALKTYPE_ORANGE_1, "Você é bugado.")
      return true
   end
end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...