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

Premium Tile

Margolin

עם ישראל חי
Joined
Dec 20, 2016
Messages
43
Reaction score
12
Does anyone have the premium bridge tile for 1.2 or 1.3?
I can't seem to find it
Thanks.
 
It worked, but for some reason it won't give me the blue effect. Can you help me add some white text please?

server/premiumbridge.lua at df28e225b3a1000872ee8cd7e9756ec0ff93ed01 · orts/server · GitHub
here is one


Lua:
local failPosition = Position(32066, 32192, 7)

function onStepIn(creature, item, position, fromPosition)
    local player = creature:getPlayer()
    if not player then
        return true
    end

    if player:isPremium() then
        return true
    end

    failPosition:sendMagicEffect(CONST_ME_MAGIC_BLUE)
    player:teleportTo(failPosition)
    return true
end
 
Back
Top