• 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.3 script

matthew123456

New Member
Joined
Aug 24, 2013
Messages
121
Reaction score
3
solved


Code:
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
        if item.itemid == 5123 then
        if player:getVocation():getId() == 4 then
            player:teleportTo(toPosition, true)
            item:transform(item.itemid + 1)
        end
    else
        player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "Only knights may enter.")
    end
    return true
end
 
Last edited:
Back
Top