• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Problem on event

Nacke

New Member
Joined
Feb 13, 2008
Messages
79
Reaction score
0
hello, when I put the event on monsters and kill the monster the sever crashes.
what is the problem?
I use tfs 0.3.6


PHP:
function onKill(cid, target)
if (getCreatureName(target) == "Pythius The Rotten") then
setGlobalStorageValue(5544, -1)
doTeleportThing(cid, {x=14819,y=16143,z=15})
end
return TRUE
end

PHP:
registerCreatureEvent(cid, "PythiusQuest")

PHP:
<script>
	<event name="PythiusQuest"/>
</script>


PHP:
<event type="kill" name="PythiusQuest" script="pythiusquest.lua"/>



thank you very much
 
you didn't register it correctly in creaturescripts.xml:
Code:
<event type="kill" name="PythiusQuest" event="script" value="pythiusquest.lua"/>
 
Back
Top Bottom