president vankk
Web Developer & AuraOT Owner
- Joined
- Jul 10, 2009
- Messages
- 5,719
- Solutions
- 9
- Reaction score
- 339
When I player level < 100 die, doesn't drop loot any loot(working), but when the player die < 100 dies, doesn't make any body in the ground? How I make that? Thanks.
# I'm using this script:
Thanks.
# I'm using this script:
Code:
function onPrepareDeath(cid, killer)
if getCreatureSkullType(cid) == SKULL_NONE and getPlayerLevel(cid) < 100 then
doSetCreatureDropLoot(cid, false)
end
return true
end
Thanks.