• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Remove Red Skull

santtyx

New Member
Joined
Apr 19, 2011
Messages
11
Reaction score
1
hello, I want you to give him any item that you right click and remove the pkred
but cost you say 50 crystals.

thanks
 
Go to data/actions/scripts create a .lua file and paste this:

LUA:
function onUse(cid, item, frompos, item2, topos)
 
        local nonremskulls =  -- These are the skulls it cant remove. If player has any of these, the rune wont work.
{
        white = SKULL_WHITE
}
 
        if isInArray(nonremskulls, getPlayerSkullType(cid)) then
                doPlayerSendCancel(cid,"You can't remove this type of skull.")
                doSendMagicEffect(getPlayerPosition(cid),2)
        else
                db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
                doCreatureSetSkullType(cid,0)
                doPlayerSendTextMessage(cid,27,"Your frags & your skull have been removed!")
                doSendMagicEffect(getPlayerPosition(cid),CONST_ME_MAGIC_RED)
                                doSendAnimatedText(getPlayerPosition(cid), "Removed!", 180)
                doRemoveItem(item.uid, 1)
                                doPlayerSetSkullEnd(cid, 0, getPlayerSkullType(cid))
 
        return TRUE
        end
end

Now go to data/actions/actions.xml and paste this there:
LUA:
<action itemid="9969" script="redskull.lua"/>

You put the itemid you want to use
 
@ScapeOT

had some errors but modified it a bit and if served ... Thanks ..

and another thing, what happens is that when I say! skull, were charged 50crystal
and give them one of those skull to remove pkred
 
Back
Top