• 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!

TFS 1.2 - if in protection

can u help me to edit this script cause its not working ;x
Code:
function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey)

    if isInArray({SKULL_RED, SKULL_BLACK}, player:getSkull()) and (Tile(position):hasFlag(TILESTATE_PROTECTIONZONE)) then
        player:setSkull(SKULL_NONE)
        player:setSkullTime(0)
        player:getPosition():sendMagicEffect(CONST_ME_MAGIC_GREEN)
        player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "Your skull has been removed!")
        db.query("UPDATE `player_deaths` SET `unjustified` = 0 WHERE `unjustified` = 1 AND `killed_by` = " .. db.escapeString(player:getName()))
        item:remove(1)
    else
        player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You can only remove red or black skulls in pz zone!")
        player:getPosition():sendMagicEffect(CONST_ME_POFF)
    end
   
    return true
end

d4f852f078a21805463220b0317cc35f.png
 
Back
Top