• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.
Resource icon

TFS 1.3 Teleport to trainers

Paxiz

Premium User
Premium User
Joined
Mar 21, 2024
Messages
44
Solutions
1
Reaction score
21
Location
~pl /opt
Paxiz submitted a new resource:

TFS 1.3 Teleport to trainers - not tested

Script: teleport_with_tileCheck.lua
Code:
local ENTRY_AID = 60005 -- ActionID on teleport
local TARGET_ITEMID = 100 -- You must be teleported only to tile with id 100 change it to your tileid on training monk rooms or other area

local fromPos = Position(1000, 1000, 7) -- on your map left up corner
local toPos = Position(1500, 1500, 7) -- right down corner

local freeTiles = {}

local function updateFreeTileCache()
    freeTiles = {}
    for x = fromPos.x, toPos.x do
        for y =...

Read more about this resource...
 
Cpu usage go brrr
300 players, checking all tiles with given id. It will kill server
 
i dont tested it, i stop with my project but it check ids on your area from to xyz in script every 30 seconds you can change id 100 to other id and time to other
 
Back
Top