• 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. Unknown Soldier

    [TFS 1.4.2] World exp, skill and loot boost

    Yes, it works. Loot boost might be harder to implement tho, but exp and skill is totally fine and easy to do.
  2. Unknown Soldier

    Simple talents with modalwindow

    Nothing like that happens. There was a commit after 1.4.2 that fixed some issues about equip/deequip, perhaps it has something to do with this.
  3. Unknown Soldier

    Simple talents with modalwindow

    You can also change player:getMaxHealth() and player:getMaxMana() to player:getBaseMaxHealth() and player:getBaseMaxMana() So now it will just get the base health and mana poions, ignoring extra values applied by scripts. Seems to be working for me.
  4. Unknown Soldier

    C++ Spawn BUG in ALL TFS 1.X (distro bug)

    Wait, placing a respawn area with radius 30 and spamming 100 mobs inside of it is your way to go? Dude, why even bothering about spawn areas in the first place? Remove the feature! 🤔 what the.. ok, I'm out, gl & hf ^^
  5. Unknown Soldier

    C++ Spawn BUG in ALL TFS 1.X (distro bug)

    So set it to 10, then up to 10 mobs will respawn at once, within a minute. Or create new spawn area in map editor for another mob...
  6. Unknown Soldier

    C++ Spawn BUG in ALL TFS 1.X (distro bug)

    Wrong name for the thread, it is not a distro bug, it is just how rateSpawn works. I guess everything has been already explained.
  7. Unknown Soldier

    Lua [TFS 1.2] Script for boost exp for everyone on server.

    The second player will get an error message textAlreadyActive = "World XP+Skill+Loot boost is already active.", So you'll have to edit the script a bit to allow stacking
  8. Unknown Soldier

    Lua [TFS 1.2] Script for boost exp for everyone on server.

    https://otland.net/threads/tfs-1-4-2-world-exp-skill-and-loot-boost.288293/ Should work for tfs 1.2 as well
  9. Unknown Soldier

    Tibia Object Builder 10.98

    which version do you use?
  10. Unknown Soldier

    OTClient Deleting Token/Ip/Port/Version in entergame.lua

    Right, but you have to do few more steps because I assume your login button will not work. Remove or comment out following lines in entergame.lua: G.authenticatorToken = token or enterGame:getChildById('accountTokenTextEdit'):getText()...
  11. Unknown Soldier

    OTClient Deleting Token/Ip/Port/Version in entergame.lua

    Now search in entergame.otui, just play with it, perhaps a little entergame.lua editing would be needed too, can't remember exactly, but you can do this in those 2 files
  12. Unknown Soldier

    OTClient Deleting Token/Ip/Port/Version in entergame.lua

    Just go to init.lua in main folder and type your server name and ip adress Servers = { YourServerName = "localhost:7171:1098" } and ALLOW_CUSTOM_SERVERS = false
  13. Unknown Soldier

    otui problem

    I agree, just be careful no to wipe your ctrl, shift and r labels from your keyboard ;)
  14. Unknown Soldier

    otui problem

    My guess is UIWidget doesn't respond to this, try changing it to MainWindow for example.
  15. Unknown Soldier

    [TFS 1.3] Small Boss Room

    Damn, sorry, you need also this function iterateArea(func, from, to) for z = from.z, to.z do for y = from.y, to.y do for x = from.x, to.x do func(Position(x, y, z)) end end end end in global.lua
  16. Unknown Soldier

    [TFS 1.3] Small Boss Room

    Delete any item might be difficult cause it could delete the items that were placed in map editor, however if you want to remove specific item, like a corpse type, or certain item id, then you can use something like that iterateArea( function(position)...
  17. Unknown Soldier

    OTClient Help adding and displaying Icons for custom Conditions in OTClient?

    Have you solved it already? Got the same issue
  18. Unknown Soldier

    Monster Monster looktypes

    13.40 looktypes from test server day 1
  19. Unknown Soldier

    [TFS 1.4.2] Item Rental System!

    That can be solved too https://otland.net/threads/tfs-1-4-disallow-specific-items-from-being-dropped-on-the-floor.278139/
Back
Top