• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. newby

    TFS 0.X Monster of the day 0.4

    bump
  2. newby

    TFS 0.X Monster of the day 0.4

    local config = { creationTime = 7 * 86400, checkTime = 7 * 86400, viceCount = 4, memberCount = 10 } function onStartup() local data, time, result = {}, os.time(), db.getResult("SELECT `id`, `ownerid`, `creationdata`, `checkdata` FROM `guilds` WHERE `world_id` = " ...
  3. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    the first print -1 the second print 0 ... 1
  4. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    It's destroying right now, when u enter on TP or logout, but there is still a problem: When u destroy a trainer, u cant go back there 1 Dawn King enter on trainer 2 Convidador enter on trainer 3 Dawn King exit a trainer leaving 4 Dawn King enter on trainer, but insted of come on 1 position he...
  5. newby

    TFS 0.X Change potion formula

    The line with error is local max = health + getPlayerLevel(cid) * config.healthMultiplier not if(health) then
  6. newby

    TFS 1.2 Memory leek? Linux

    or starts to use something really made for 8.6 https://otland.net/threads/8-60-the-forgotten-server-0-4.240240/
  7. newby

    TFS 0.X Change potion formula

    local config = { removeOnUse = "no", usableOnTarget = "no", -- can be used on target? (fe. healing friend) splashable = "no", range = -1, realAnimation = "no", -- make text effect visible only for players in range 1x1 healthMultiplier = 3.0, manaMultiplier = 1.0 } config.removeOnUse =...
  8. newby

    TFS 0.X Change potion formula

    Change health healing potions HP= 3*lvl+50 shp= 3*lvl+100 ghp= 3*lvl+200 uhp= 3*lvl+250 pallypot hp= 3*lvl+100
  9. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    And now when enter on exit teleport floods: [13:29:24.028] [Error - MoveEvents Interface] [13:29:24.028] data/movements/scripts/trainerstp.lua:onStepIn [13:29:24.028] Description: [13:29:24.028] (luaGetThingFromPos) Tile not found [13:29:24.028] [Error - MoveEvents Interface] [13:29:24.028]...
  10. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    Same problem: https://ibb.co/17gxSG1 And now, entering on teleport is not deleting the north walls, it was working before, the bug before was only on logout Can u say here: https://github.com/Fir3element/3777/tree/master/src ??? Don't need to download, say what u think should change and i...
  11. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    Some pieces dosent destroy, like u can see https://ibb.co/PZh5Mhv And after player back he start on > not on < where was the first trainer like u can see https://ibb.co/fQX9Crg --- Why the old players on trainers cant see the ground tiles? https://ibb.co/17gxSG1 https://ibb.co/fd2KgVn...
  12. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    I've tried: function onLogout(cid) local storage = 87700 if getPlayerStorageValue(cid, storage) == 1 then doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid))) deleteTrainingRoom(getCreaturePosition(cid))...
  13. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    For some reason it's destroying the temple XD function onLogout(cid) doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid))) deleteTrainingRoom(getCreaturePosition(cid)) setRoomUnused(getRoomIndexFromPos(getCreaturePosition(cid))) return true end And i think it need a...
  14. newby

    TFS 0.X When logout on trainer generator teleport to temple and destroy trainer

    I'm using this amazing trainer generator system made by @Evil Hero https://otland.net/threads/infinity-training-room-0-3-6-0-4.179468/#post-1759936 But there is a problem... If player get kicked, after 15 min or just logout there, the player still on that position and trainer room still...
  15. newby

    TFS 0.X Training skills with training monk recive less skills

    I found it on forum a long time ago and couldnt find anymore... I want to change in my server to if player is targetting/training with a training monk he recive skills/2, i mean 2x more slower The topic i saw take changes on sources so, my sources are: Fir3element/3777...
  16. newby

    TFS 0.X Teleport to trainer

    To who dont have global.lua on data like me: Fir3element/3777 (https://github.com/Fir3element/3777/tree/master/data) Make one new global.lua on data/lib with that script: roomIndex = {} config = { room = { teleport = 1387, ground = 406, nortWestCorner = 1113, southEastCorner = 1115...
  17. newby

    TFS 0.X Teleport to trainer

    @Evil Hero what is this functions/global.lua ??? I've create a file named global.lua in data/libs And pasted that, but don't work, i think i doing wrong
Back
Top