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

Search results

  1. Unknown Soldier

    Change Spell List

    Perhaps you removed too much, revert the changes in gamelib/spells.lua and try removing selected spells again, slowly, one by one. If you didnt change anything in game_spellist/spellist.lua then this file would be fine and I woudlnt touch it. If you'd still struggle with how to remove code from...
  2. Unknown Soldier

    Change Spell List

    You can edit them in your OTC files, here: otc/modules/gamelib/spells.lua
  3. Unknown Soldier

    Exp/Kill/Drop Tracker Module [OTCV8] [TFS 1.4.2]

    if you struggle with loot tracking, just move this part local player = Player(corpse:getCorpseOwner()) if player then player:updateKillTracker(self, corpse) end under the "onDropLoot" callback, like this: function Monster:onDropLoot(corpse) if...
  4. Unknown Soldier

    Emberfall Online - Discussion Thread

    After years of development, time has finally come to step out from the shadows of the "unknown project". I am happy to share more about Emberfall Online. Let me shed some light on this upcoming server. Emberfall is a custom server built on OTC V8, protocol 10.98, featuring the latest sprites...
  5. Unknown Soldier

    The Unknown | Mapping Thread

    [302] [303] [304] [305] [306]
  6. Unknown Soldier

    Simple talents with modalwindow

    Well, i dont know if you've actually read the post you are quoting, but Im not using getMaxHealth and getMaxMana, so the problem does not occur.
  7. Unknown Soldier

    RevScripts when player get first time level x, tp player with motd ask

    My first ever attempt to modal windows, for learning purposes, hope it works as you expected. local teleportPosition = Position(2006, 1324, 7) local storageId = 987654 local levelTwentyTwo = CreatureEvent("levelTwentyTwo") function levelTwentyTwo.onAdvance(player, skill, oldLevel, newLevel)...
  8. Unknown Soldier

    [TFS 1.4.2] World exp, skill and loot boost

    Yes, you need to register it in actions.xml <action actionid="7824" script="worldboost.lua"/> and the script itself should look like this: local config = { basinPosition = Position(1993, 1324, 7), basinEmpty = 28317, basinFull = 28316, boostTime = 120, --seconds...
  9. 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.
  10. 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.
  11. 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.
  12. 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 ^^
  13. 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...
  14. 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.
  15. 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
  16. 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
  17. Unknown Soldier

    Tibia Object Builder 10.98

    which version do you use?
  18. 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()...
  19. 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
Back
Top