• 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. Znote

    Account names won't work on Gesior, only account numbers!?

    Account names was introduced in protocol 8.3. On protocol 8.0 you need to restrict registrations to only allow numbers.
  2. Znote

    [8.6] Small Island

    Approved Looks cute. :)
  3. Znote

    [8.4.0, 8.5.4] Large pack of maps

    Approved Nice, alot of dive into, great if your looking for creativity!
  4. Znote

    [France] [8.6] AcidsOT

    Created character history page, you can login and view the life progress of your characters. We also hit a new record of 24 players online. ^^ This is an all time high record for us! :D
  5. Znote

    C++ vs Lua (a discussion about optimization)

    I think (almost) everything that can be done in Lua, should be done in Lua. I disagree with @zbizu that market would be a good sample for a C++ use-case. The market should be flexible and adaptable, and is a perfect case to write entirely in Lua. The market isn't conceptually a high performance...
  6. Znote

    problem with doors tfs 1.4 10.98

    There might be a bug with RME where the designated door tool uses wrong door id and selects the locked version instead of the regular door. And houses save door and window states, which will override otbm on startup: https://github.com/otland/forgottenserver/issues/3455
  7. Znote

    [France] [8.6] AcidsOT

    Happy new year everyone! 🎉 Changelog: 31 December 2021 Summoned creatures (along with Doppelganger) will teleport to master if they are to far away. Doppelganger will now haste himself along with master, and can cast exura san with a 6 second cooldown. Doppleganger vs Dragon arena to test AI...
  8. Znote

    Resurrection of Faloria 7.4

    Looks awesome! And what a pleasant surprise to see you getting back on track @Amoaz ! :D
  9. Znote

    [France] [8.6] AcidsOT

    Changelog: 30 December 2021 Fixed so burst arrows are a part of bow rapid fire attack behavior. New royal paladin spell: Summon Doppelganger (beta) utevo duplex res Costs 25 soul points and casters max health in mana Create a summon that resembles the caster (same name, outfit) Summon has same...
  10. Znote

    C++ unique active player

    https://otland.net/threads/very-important-rules-change-on-otservlist-org.247531/post-2492577 updated protocolstatus block: // Compliance to otservlist.org regulations // Dont count players with idletime over 15 minutes, count max 4 players per IP, count unique IPs //...
  11. Znote

    Very important - Rules change on otservlist.org

    @xinn Has there been any new rule changes lately? https://otland.net/threads/unique-active-player.279129/
  12. Znote

    C++ unique active player

    Xinn is asking for this? Where did you get this information? My guess is that he wants you to modify the status protocol response to contain a count of unique IP addresses. But if this is an otservlist regulation, it should be public information.
  13. Znote

    Error Script | Premium_Ends_At - TFS 1.3

    Then use a storage value to determine premium state and only trigger the code when the storage value mismatches with current state.
  14. Znote

    Error Script | Premium_Ends_At - TFS 1.3

    I think you use premdays instead of premium_ends_at? premium_ends_at stores the timestamp when premium expires, premdays stores remaining days of premium. So if premdays is 0, then you do not have premium. local TOWN_ID = 2 function onLogin(cid) local player = Player(cid) local...
  15. Znote

    [France] [8.6] AcidsOT

    Changelog: 29 December 2021 New bow attack behavior, 20% chance to perform triple-shot on target. We just hit 14 players online! :D
  16. Znote

    otland lagging?

    I havent had a single cloudflare timeout or lag on otland the past 2 weeks. It went from being painful on a daily basis to be completely resolved.
  17. Znote

    [France] [8.6] AcidsOT

    Changelog: 28 December 2021 New crossbow attack behavior, directional pierce shot, power bolts and infernal bolts pierce up to 2sqm Added tasks for ghouls, necromancers and hellfire devils Demon and Hellfire Devil task now gives a very epic tome. Jester staff is now death damage. Jester staff...
  18. Znote

    [France] [8.6] AcidsOT

    Merry Christmas everyone! :) Changelog (since last changelog in this thread): Changelog: 22 October 2021 Earth rods now creates a poison plague that spreads to adjacent creatures Ice rods now casts an ice explosion splash attack Fixed bug preventing fireborn giant armor from being equipped...
  19. Znote

    HELP QUEST TFS 1.4

    You didnt add the rewardChest function I posted first on this thread? In data/scripts/lib/, create rewardchest.lua and add this code:
  20. Znote

    HELP QUEST TFS 1.4

    Here is a sample quest from AcidsOT (TFS 1.4), I'm also a bit oldstyle and script quests (instead of using default quest system and RME). local uids = { chest1=13370, chest2=13371 } local action = Action() for _, uid in pairs(uids) do action:uid(uid) end function...
Back
Top