Não testei
Crie um arquivo.lua em data/creaturescripts/scripts e coloque isso:
function onDeath(cid)
local monster = Monstro -- monstro aqui
local effect = 50 -- efeito aqui
if isMonster(cid) and getCreatureName(cid) == 'monster' then
doSendMagicEffect(getCreaturePosition(cid), effect)
end
return true
end
em creaturescripts.xml
<event type="death" name="Escolha um nome" event="script" value="arquivo.lua"/>
no login.lua:
registerCreatureEvent(cid, "Coloque o mesmo nome da tag")
Adicione essa tag no monstro:
<script>
<event name="mesmo nome da tag do xml"/>
</script>