@Marcryzius
Obrigado não sabia disso de learnspells xD
@TOPIC
O alguem pode me ajudar agora o problema é que o npc não responde quando eu falo hi >.< quando eu mechia em 8.1 ( raramente.. ) tinha la os negocios de hi mas eu olhei scripts de varios npc do ot 8.40 aki e nenhum eu encherguei algo com hi nem nada parecido vo manda a script do npc :
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, 'Light Healing') or msgcontains(msg, 'light healing') then
elseif getPlayerLevel >= 9 then
selfSay('Você deseja comprar a magia {Light Healing} ?', cid)
talkState[talkUser] = 1
else
selfSay('Você não tem level suficiente.', cid)
end
end
local cost = 1000
if talkState[talkUser] == 1 and (msgcontains(msg, 'yes') or msgcontains(msg, 'sim')) then
if doPlayerRemoveMoney(cid, cost) == TRUE then
doPlayerLearnInstantSpell(cid, 'Light Healing')
selfSay('Você aprendeu a magia {Light healing}.', cid)
else
selfSay('Você não tem dinheiro suficiente!', cid)
end
end
Alias, muito obrigado lucasjockey!