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

    C++ Nekiro 1.5 772 monsters attacks tick interval

    Change src/creature.h static constexpr int32_t EVENT_CREATURECOUNT = 10; static constexpr int32_t EVENT_CREATURE_THINK_INTERVAL = 1000; to static constexpr int32_t EVENT_CREATURECOUNT = 1; static constexpr int32_t EVENT_CREATURE_THINK_INTERVAL = 100;
  2. Forkz

    Lua TFS 1.5 Nekiro 772 real blue djinn behaviour

    Very good, one day I want to be like you, hug dear @Gesior.pl
  3. Forkz

    Lua TFS 1.5 Nekiro 772 real blue djinn behaviour

    Are you copying this code from some server? Check if you have the storage data/lib/core/storages.lua PlayerStorageKeys.DjinnWar.MaridFaction.Mission03 Also check if in data/creaturescripts/creaturescripts.lua has something related to DjinnWar
  4. Forkz

    TFS 1.X+ Remove share exp c++/lua

    You can look at the commented codes of TFS-1.5-Downgrades, the shared system is disabled, follow the same codes. https://github.com/nekiro/TFS-1.5-Downgrades/blob/a4675433d0e5c0001d37d4cab1241120216597e4/src/player.cpp#L4088
  5. Forkz

    Problem after adding market/inbox

    Thank you all, below is the complete system for the addition! https://otland.net/threads/tfs-1-5-downgrades-market-system.291345/
  6. Forkz

    TFS-1.5-Downgrades - Market System

    Hi otlanders, After a long time looking for this system, I saw that it would not be available in the community, only people wanting to sell it and today, I will post it for free to the entire community. What was done: The object builder source was edited to read the "market" in the .dat and the...
  7. Forkz

    Server recommendation?

    You can access the otservlist and choose one according to your taste. I recommend servers that have been online longer and are more consolidated. https://otservlist.org/search/f91bb3ba3318d6f201408431dd68fbd5
  8. Forkz

    C++ Trade with NPC, nekiro downgrade 1.5 8.0

    That's what I thought too, I even thought about changing the way capfree is used within NPC TRADE but I haven't done any testing yet, if you have an update, I'll be waiting
  9. Forkz

    C++ Trade with NPC, nekiro downgrade 1.5 8.0

    If you look at your database for example, if you have a 1000+ cap and a 1000- cap, there will be a difference when you talk to the NPC. I am facing the same problem, and also I use downgrade nekiro 7.72
  10. Forkz

    C++ Trade with NPC, nekiro downgrade 1.5 8.0

    He is correct, however, for example, the character has 1918.4 of REAL cap, but he only marks 191.84, the comma is skipping 1 space.
  11. Forkz

    TFS 1.X+ Rarity Rolls & Custom Attributes Library

    Did you add boost to your source? https://github.com/otland/forgottenserver/commit/0d2c287f08b43ec2a3f295d6f07545e22a70c29a
  12. Forkz

    AAC MyAcc - add server discord

    1. Access your discord server and go to server settings; 2. Enter the widget tab; 3. Widget ready copy the address; Now go to index.php (depending on your site), and add the link, replace {Address here} with your copied link from the discord server <iframe src="{Adress here}" width="350"...
  13. Forkz

    Compiling Tutorial do Compile Object Builder 2025

    Hi otlanders, https://github.com/punkice3407/ObjectBuilder Could someone create a tutorial on how to compile the object builder in 2025, as the tutorial in the readme is not up to date?
  14. Forkz

    OTClient tibia 8.60 ADD NEW ITEMS

    If the first one didn't work, use the second one.
  15. Forkz

    C++ Trade with NPC, nekiro downgrade 1.5 8.0

    It's complicated, there's always something to ruin what's good lol
  16. Forkz

    OTClient tibia 8.60 ADD NEW ITEMS

    Uses a smaller version of the item editor https://github.com/ottools/ItemEditor/releases
  17. Forkz

    C++ Trade with NPC, nekiro downgrade 1.5 8.0

    Sorry, rsrsrs https://github.com/OTAcademy/otclientv8/blob/master/modules/game_npctrade/npctrade.lua
  18. Forkz

    C++ Trade with NPC, nekiro downgrade 1.5 8.0

    Not work function onFreeCapacityChange(player, freeCapacity) if not freeCapacity then return end if freeCapacity > 99999 then freeCapacity = math.min(9999, math.floor(freeCapacity / 1000)) .. "k" elseif freeCapacity > 999 then freeCapacity = math.floor(freeCapacity) elseif...
  19. Forkz

    RevScripts TFS 1.5 Downgrade Nekiro - Fast Spawn PlayerOnline

    I will take the test and come back with the results.
Back
Top