• 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 with creaturescripts

phern

alysiaots.com
Joined
Nov 2, 2008
Messages
220
Reaction score
96
Location
Poland
When I am using no matter what creaturescript, the corpse of killed monster dissapear.
How can I fix it?
 
Ive no idea..
Take a look:
Code:
function onDeath(cid, corpse, killer)
registerCreatureEvent(cid, "ltg")
local creaturename = getCreatureName(cid)
doCreatureSay(cid, "YOU ARE STRONGER THAN I THOUGHT! TAKE THAT!.", TALKTYPE_ORANGE_2, getCreaturePosition(cid))

if creaturename == 'Lizard, the guard' then
doSummonCreature("Mage, the protector",{x=1427, y=808, z=10})
doSummonCreature("plaguesmith",{x=1423, y=809, z=10})
doSummonCreature("plaguesmith",{x=1431, y=809, z=10})
doSendMagicEffect({x=1423, y=809, z=10},17)
doSendMagicEffect({x=1431, y=809, z=10},17)
end
end
 
Back
Top