se for em script da sim tome
vá na pasta creaturescripts/script crie um arquivo chamado corpse.lua e coloque esse script dentro
local vocations = {
--[vocation_id] = corpse id,
[1] = 13240,
[2] = 13240 --Sempre deixe o ultimo sem virgula
}
function onDeath(cid, corpse, deathList)
if not isPlayer(cid) then return true end
local cp = vocations[getPlayerVocation(cid)]
if cp then
doTransformItem(corpse.uid, cp)
end
return true
end
agora abra o login.lua e registre a função
registerCreatureEvent(cid, "Corpse")
depois abra o creaturescripts.xml e coloque a seguinte tag
<event type="death" name="Corpse" event="script" value="corpse.lua"/>
Tenta ai e veja se dar certo :_)