Ir para conteúdo

[Talkactions] Dúvida No Mount Doll


yasha

Posts Recomendados

to com uma dúvida aqui no script de mount adoll, meu ot é 8.70 e eu quero usar um script pra quanto o player falar !mount NOME DA MONTARIA ele receber a montaria desejada, o script é esse

function onSay(cid, words, param)
local mounts = {
["widow queen"] = {price = 0, id = 1},
["racing bird"] = {price = 0, id = 2},
["war bear"] = {price = 0, id = 3},
["black sheep"] = {price = 0, id = 4},
["midnight panther"] = {price = 0, id = 5},
["draptor"] = {price = 0, id = 6},
["titanica"] = {price = 0, id = 7},
["tin lizzard"] = {price = 0, id = 8},
["blazebringer"] = {price = 0, id = 9},
["rapid boar"] = {price = 0, id = 10},
["stampor"] = {price = 0, id = 11},
["undead cavebear"] = {price = 0, id = 12}
}
local msg = {"Você pode escolher um: widow queen,racing bird,war bear,black sheep,midnight panther,draptor,titanica,tin lizzard,blazebringer,rapid boar,stampor,undead cavebear", "Voce nao tem Mountdoll..", "Not A Good Param..", "Mount conquistado com susseso!.","Voce ja tem este mount"}
local param = string.lower(param)
local t = mounts[param]
if(getPlayerItemCount(cid, 8982) > 0) then
if(param ~= "" and t) then
if t and not getPlayerMount(cid, t.id) then
doPlayerRemoveItem(cid, 8982, 1)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4])
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)
doPlayerAddMount(cid, t.id)
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[5])
end
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1])
end
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2])
end
end

eu tenho o item e tudo certo mas quando eu digito !mount aparece isso: (já tentei digitar !mount undead cavebear e não aparece nada)

02:18 Você pode escolher um: widow queen,racing bird,war bear,black sheep,midnight panther,draptor,titanica,tin lizzard,blazebringer,rapid boar,stampor,undead cavebear

no executável dá erro na linha 24, que é esta:

if t and not getPlayerMount(cid, t.id) then

se alguém souber como corrigir o problema eu agradeço desde já e dou rep+

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

×
×
  • Criar Novo...