Em data\actions\actions.xml adicione:
<action itemid="[color=#ff0000][b]ID DA POÇÃO[/b][/color]" event="script" value="redskullpot.lua">
Em data\actions\scripts crie um arquivo chamado redskullpot.lua e escreva isto dentro:
function onUse(cid,item,frompos,item2,topos)
if (getCreatureSkullType(cid) == SKULL_RED) then
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ");")
doPlayerSetRedSkullTicks(cid, 0)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Sua red skull foi removida!")
doCreatureSetSkullType(cid, SKULL_NONE)
doRemoveItem(item.uid, 1)
end
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Voce nao tem red skull")
end
return TRUE
end