pera ai q ja ja fasso esse script
@edit
abra o login.lua e add isso antes do ultimo Return true
registerCreatureEvent(cid, "jail")
feche e salve e va no creaturescripts.xml e add isso
<event type="death" name="jailpalyer" script="jail.lua"/>
agora crie arquivo.lua em script e adicione isso
config = {
jailpos = {x=160, y=49, z=5}
unjailpos = {x=160, y=54, z=7}
}
function onDeath(cid, corpse, lastHitKiller, mostDamageKiller)
if(isPlayer(lastHitKiller) == TRUE) then
doPlayerAddMoney(lastHitKiller, config.reward)
doPlayerSendTextMessage(lastHitKiller, MESSAGE_STATUS_CONSOLE_ORANGE, "Ta Prezo " .. getCreatureName(cid) .. " e recebeu " .. config.reward .. " GPs.")
end
return TRUE
end