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

[Request] Premium Door for TFS 0.3.4

sunix64

Blogger
Joined
May 20, 2009
Messages
27
Reaction score
0
Location
Chile
Well, I need a door, or maybe a tile which only premium players can pass (or walk) through.

Thanks!:thumbup:
 
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if isPremium(cid) == TRUE then
        if getCreaturePosition(cid).y < toPosition.y then
            doTeleportThing(cid, {x=toPosition.x,y=toPosition.y+1,z=toPosition.z}, TRUE)
        else
	    doTeleportThing(cid, {x=toPosition.x,y=toPosition.y-1,z=toPosition.z}, TRUE)
        end
    else
	doPlayerSendCancel(cid, "You must be premium to pass this door.")
    end
    return TRUE
end
 
Back
Top