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

Recent content by Stanos

  1. Stanos

    TFS A* Algorithm :D

    Indeed, it appears better, but I'm particularly interested in how much it has improved RAM usage, as it's one of my main concerns
  2. Stanos

    TFS A* Algorithm :D

    Do benchmarks before and after
  3. Stanos

    Looking for long term TFS 1.2/OTCV8 programmer

    Hello, since I have limited time and can't invest much of my own dou to work, I'm seeking a skilled programmer with experience in TFS 1.X and OtclientV8. The main priority is clean, organized, and well-optimized code. I'm not interested in a programmer who merely achieves the desired outcome but...
  4. Stanos

    [TFS 1.4.2] Boss Reward Chest or Boss Reward Bag

    And i would suggest making new variable in table for monsters like monsters = {... ...} and not using string:split(",") because its hella slow if there is a lot of monsters you should use pairs just for i loop. Its always good to optimize the code because current code is hella slow
  5. Stanos

    [TFS 1.4.2] Boss Reward Chest or Boss Reward Bag

    Great release but i would suggest using ip limitation because this event could be easily abused by MC players and will put a lot of people in bad situations because of those farmers, so limiting it only just once or twice per ip would solve it.
  6. Stanos

    How many people are using WASD vs Arrows vs Numpad to walk?

    WASD for a while since my keyboard is mini, so there isnt arrow option.
  7. Stanos

    OTClient how to change icon of compiled otclient exe file?

    1. Open Visual Studio 2. Press continue without code 3 .Press ctrl+O 4. Selected ur .exe file 5. Delete old icon and imoport new 6. Press save
  8. Stanos

    C++ Server crashing strange error

    Hmm my speculation is that it tries to access memory that doesn't exist, possibly due to a null pointer or some other memory corruption issue 🤔
  9. Stanos

    [Germany] [8.6] Legends World EU Launch - A 100% Custom RPG World, Custom Vocations!

    You have to respect the effort of 2minute ssl installation on his site
  10. Stanos

    TFS 1.2 Removing Items even if its in part of the house

    Hello, issue you facing is really easy to fix. The reason why it deletes furniture from you house is because items are marked as not Movable so instead write a lua code to block item movement. So uncheck in objectbuilder the option not movable and inside players.lua in events folder add this...
  11. Stanos

    Windows Help me please, someone is making DDOS on my OT.

    This is the reason why @Gesior.pl released ots statistics Feature - [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra (https://otland.net/threads/tfs-1-4-ots-statistics-c-lua-sql-by-kondra.283717/) to catch code that could be causing it would speculations. And OVH provides protection for DDOS so...
  12. Stanos

    New server in the works with no cash shop.

    Sounds like a lobotomy to me, uGa BuuGa im to lazy to visit NPC.
  13. Stanos

    How can I create an infinite food?

    The error message indicates that there is a missing configuration in your action.xml. Specifically, it's complaining about a missing toid attribute in the <action> tag. So instead of declearing fromid, use. <action itemid="7555" script="Other/food/infinityfood.lua" />
  14. Stanos

    How can I create an infinite food?

    Try local foods = { [12345] = {10, 'Yum.', infinite = true}, -- If true: dont apply item:remove(1) -- Add the rest here } function onUse(player, item, fromPosition, target, toPosition, isHotkey) local food = foods[item.itemid] if not food then return false end...
Back
Top