Ir para conteúdo
  • 0

Ajuda com npc


Ckfox

Pergunta

Então eu estava com um tempo livre e resolvi tentar fazer um script (Estou Aprendendo). Fiz tudo certo mais eu queria que alem do pokemon+20 e a grana tbm pegaçe um item que no caso e a o ID=27044

Se poderem ajudar agradeço

| |

\/ script feito ate o momento \/

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}
function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
function onThink() npcHandler:onThink() end
function creatureSayCallback(cid, type, msg)
if(not npcHandler:isFocused(cid)) then
return false
end
local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid

if (msgcontains(msg, 'Evoluir') or msgcontains(msg, 'evoluir')) then --alterado v1.7
selfSay("Voce quer tranformar seu Tangela em Tangrowth? Voce precisa do Tangela+20 + 2,5kk!", cid)
talkState[talkUser] = 1
elseif (msgcontains(msg, 'yes') or msgcontains(msg, 'Yes')) and talkState[talkUser] == 1 then
if getPlayerSlotItem(cid, 8).uid <= 0 then
selfSay("Desculpe, voce nao esta com o pokemon na slot!", cid)
talkState[talkUser] = 0
return true
end
--alterado v1.2
if #getCreatureSummons(cid) >= 1 then
selfSay("Puxe seu pokemon para pokebola!", cid)
talkState[talkUser] = 0
return true
end
local pb = getPlayerSlotItem(cid, 8).uid
if getItemAttribute(pb, "poke") ~= "Tangela" then
selfSay("Coloca seu Tangela+20 na slot por favor!", cid)
talkState[talkUser] = 0
return true
end
if not getItemAttribute(pb, "boost") or getItemAttribute(pb, "boost") < 20 then
selfSay("Desculpe seu Tangela não esta boosted +20!", cid)
talkState[talkUser] = 0
return true
end
--100000 = 1k, 1000000 = 10k, 10000000 = 100k
if doPlayerRemoveMoney(cid, 250000009) == true then
selfSay("So there is it! Enjoy!", cid)
doItemSetAttribute(pb, "hp", 1)
doItemSetAttribute(pb, "poke", "Tangrowth")
doItemSetAttribute(pb, "description", "Contains a Tangrowth.")
doItemEraseAttribute(pb, "boost")
doTransformItem(getPlayerSlotItem(cid, 7).uid, fotos["Tangrowth"])
doItemSetAttribute(pb, "Icone", "yes")
doTransformItem(pb, icons[getItemAttribute(pb, "poke")].on)
if useKpdoDlls then
doCreatureExecuteTalkAction(cid, "/pokeread")
end
talkState[talkUser] = 0
return true
else
selfSay("Você nao tem dinheiro suficiente!", cid)
talkState[talkUser] = 0
return true
end
end
return true
end
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

 

Link para o comentário
Compartilhar em outros sites

2 respostass a esta questão

Posts Recomendados

  • 0
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}
function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
function onThink() npcHandler:onThink() end
function creatureSayCallback(cid, type, msg)
if(not npcHandler:isFocused(cid)) then
return false
end
local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid

if (msgcontains(msg, 'Evoluir') or msgcontains(msg, 'evoluir')) then --alterado v1.7
selfSay("Voce quer tranformar seu Tangela em Tangrowth? Voce precisa do Tangela+20 + 2,5kk!", cid)
talkState[talkUser] = 1
elseif (msgcontains(msg, 'yes') or msgcontains(msg, 'Yes')) and talkState[talkUser] == 1 then
if getPlayerSlotItem(cid, 8).uid <= 0 then
selfSay("Desculpe, voce nao esta com o pokemon na slot!", cid)
talkState[talkUser] = 0
return true
end
--alterado v1.2
if #getCreatureSummons(cid) >= 1 then
selfSay("Puxe seu pokemon para pokebola!", cid)
talkState[talkUser] = 0
return true
end
local pb = getPlayerSlotItem(cid, 8).uid
if getItemAttribute(pb, "poke") ~= "Tangela" then
selfSay("Coloca seu Tangela+20 na slot por favor!", cid)
talkState[talkUser] = 0
return true
end
if not getItemAttribute(pb, "boost") or getItemAttribute(pb, "boost") < 20 then
selfSay("Desculpe seu Tangela não esta boosted +20!", cid)
talkState[talkUser] = 0
return true
end
if (msgcontains(msg, 'Item') or msgcontains(msg, 'item')) then 
selfSay("eu vendo um item especial, voce vai querer?", cid)
talkState[talkUser] = 1
elseif (msgcontains(msg, 'yes') or msgcontains(msg, 'Yes')) and talkState[talkUser] == 1 then
doPlayerRemoveMoney(cid, 250000009)
doPlayerAddItem(cid,27044,1)
selfSay("aqui esta seu item", cid)
talkState[talkUser] = 1
else
selfSay("Você nao tem dinheiro suficiente!", cid)
talkState[talkUser] = 0
return true
end
--100000 = 1k, 1000000 = 10k, 10000000 = 100k
if doPlayerRemoveMoney(cid, 250000009) == true then
selfSay("So there is it! Enjoy!", cid)
doItemSetAttribute(pb, "hp", 1)
doItemSetAttribute(pb, "poke", "Tangrowth")
doItemSetAttribute(pb, "description", "Contains a Tangrowth.")
doItemEraseAttribute(pb, "boost")
doTransformItem(getPlayerSlotItem(cid, 7).uid, fotos["Tangrowth"])
doItemSetAttribute(pb, "Icone", "yes")
doTransformItem(pb, icons[getItemAttribute(pb, "poke")].on)
if useKpdoDlls then
doCreatureExecuteTalkAction(cid, "/pokeread")
end
talkState[talkUser] = 0
return true
else
selfSay("Você nao tem dinheiro suficiente!", cid)
talkState[talkUser] = 0
return true
end
end
return true
end
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

rapais sou noob em script acho que isso deve funcionar, n é certesa, eu comecei a estudar lua agora :v

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

  • 0

onde tá if doPlayerRemoveMoney(cid, 250000009) == true then troca por

if doPlayerRemoveMoney(cid, 250000009) and getPlayerItemCount(cid, 27044) > 0 then
doPlayerRemoveItem(cid, 27044, 1)

e onde tá
else
selfSay("Você nao tem dinheiro suficiente!", cid)

coloca

else
selfSay("Você nao tem dinheiro suficiente ou não possui ".. getItemNameById(27044) .."!", cid)
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...