brendan2
Sensation black
- Joined
- Feb 19, 2009
- Messages
- 507
- Reaction score
- 1
Ok This npc does not talk back when i say mining or help or anything whats wrong and can someone fix please
Script
Npc
when I say hi he says
09:21 Mining dwarf: Welcome, Killzon Thirtytwo! I have been expecting you.
Then he does not say anything else or do anything else.
I want him to give me mining skill
please can someone help.
Tfs 0.3.6
Script
PHP:
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
-- OTServ event handling functions start
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
-- OTServ event handling functions end
function creatureSayCallback(cid, type, msg)
if(npcHandler.focus ~= cid) then
return false
end
if msgcontains(msg,'spells') or msgcontains(msg,'help') then
selfSay('Hello i can teach you mining for free. If you would like to learn mining please say mining')
elseif msgcontains(msg,'mining') then
setPlayerStorageValue(cid,40001,1)
setPlayerStorageValue(cid,40002,1)
setPlayerStorageValue(cid,40003,1)
setPlayerStorageValue(cid,40004,1)
npcHandler:say('Here you go!')
end
end
npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())
Npc
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Mining dwarf" script="data/npc/scripts/mining.lua" autowalk="1" floorchange="0">
<health now="100" max="100"/>
<look type="69"/>
<parameters>
if msgcontains(msg,'spells') or msgcontains(msg,'help') then
selfSay('Hello i can teach you mining for free. If you would like to learn mining please say mining')
elseif msgcontains(msg,'mining') then
setPlayerStorageValue(cid,40001,1)
setPlayerStorageValue(cid,40002,1)
setPlayerStorageValue(cid,40003,1)
setPlayerStorageValue(cid,40004,1)
npcHandler:say('Here you go!')
</parameters>
</npc>
when I say hi he says
09:21 Mining dwarf: Welcome, Killzon Thirtytwo! I have been expecting you.
Then he does not say anything else or do anything else.
I want him to give me mining skill
Tfs 0.3.6
Last edited: