• 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. 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
  2. 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.
  3. 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.
  4. 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
  5. 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 🤔
  6. 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
  7. 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...
  8. 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...
  9. Stanos

    New server in the works with no cash shop.

    Sounds like a lobotomy to me, uGa BuuGa im to lazy to visit NPC.
  10. 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" />
  11. 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...
  12. Stanos

    Cant find a reason why /reload command doesnt work

    Just move /reload to talkaction Move reload to talkactions by WibbenZ · Pull Request #1520 · otland/forgottenserver (https://github.com/otland/forgottenserver/pull/1520/commits/d2e693ffbf92b16b834936b6b950a9e0d468a3c4)
  13. Stanos

    Programmer Need experienced C++ developer for assistance in resolving a persistent crash issue

    Basically long story short problem was with creature conditions so, the new code now includes it = conditions.erase(it) which removes the current element from the conditions container. After erasing the condition, the new code deletes the condition object with delete condition; after that the...
  14. Stanos

    Programmer Need experienced C++ developer for assistance in resolving a persistent crash issue

    Greetings, I'm currently grappling with a persistent and bothersome crash in my code, likely tied to the monster game:checkCreatures functionality. In an effort to tackle this issue head-on, I've introduced a implemented measure using the following condition: if (attackedCreature ==...
  15. Stanos

    Temporary graphic designer for your service [OPEN]

    Well appreciate all those nice words :)
  16. Stanos

    TFS 1.X+ Monsters Behavior

    I believe it's a terrible idea to make monsters walks when the player is off-screen due to unnecessary resource consumption. Just imagine the strain on resources with thousands of monsters in motion when no one is on screen
  17. Stanos

    Temporary graphic designer for your service [OPEN]

    In the competitive landscape of platforms like Fiverr and other industries, standing out can be challenging, especially when I'm not entirely confident in the quality of my work as a graphic designer. Despite my best efforts, I often find it difficult to attract clients, even with a strong...
Back
Top