• 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. gudan garam

    Solved Umar npc index local message nil value and others

    I know this can be a dump quest, but did you try changing "djanni\'hah" to something else without escapes within the string?
  2. gudan garam

    would u like to play in tibia thats not pay2win ?

    I don't even think xp boost is a pay to win, you still have to hunt if you want it to be worth. If you have xp boost and allow 100% afk botters all day long and don't reward active players sharing party exp, then I see how that could be a problem, other than that, just don't create edited...
  3. gudan garam

    Back when there was tons of People on Ot sites.

    Honestly I there is to much new stuff that got launched in RL Tibia and OTS didn't pick up yet. The most updated/stable server right now is aurera and they don't even have the latest stuff, people can know c++ all they want, it won't be the same thing if a server owner is implementing the new...
  4. gudan garam

    TFS 1.3 Stoped Working

    Each one of thoose lines are the last functions that were called when the crashed happened, in order. Since what is in your image is a low level lib, we don't really know what caused the crash to happen (which tfs call did it), so if you click on thoose lines will eventually get to the TFS code...
  5. gudan garam

    TFS 1.3 Stoped Working

    It seems that the problem is in Map.placeCreature as you can see on the call stack, if you could provide the rest of the stack trace it would help.
  6. gudan garam

    Need % hp/mn command

    Change lines 2885 and 2886 (protocolgame.cpp): otland/forgottenserver from: msg.add<uint16_t>(std::min<int32_t>(player->getHealth(), std::numeric_limits<uint16_t>::max())); msg.add<uint16_t>(std::min<int32_t>(player->getMaxHealth(), std::numeric_limits<uint16_t>::max())); to: if...
  7. gudan garam

    Back when there was tons of People on Ot sites.

    Literally, people grew up and left. This community being so old, there is a lot of stuff out there already, so when server owners have to update their stuff, they either know how to do it or they know someone that already know how to do it, get it? No need to interact here, where they can have...
  8. gudan garam

    8.54 three little things

    If you can read the code, there is a part that reads: if(creature->getZone() != ZONE_PROTECTION) Translated from c++ to english: "if we get the creatures zone, and its not ZONE_PROTECTION (!= means different, == means equal to) then we execute the code, otherwise we don't need to bother"...
  9. gudan garam

    8.54 three little things

    Regeneration inside protection zones you should look at condition.cpp ConditionRegeneration::executeCondition()
  10. gudan garam

    Scripter Looking for scripter / busco scripter

    I added you.
  11. gudan garam

    [Tibia 11][Protocol 11.10] Inspect and VIP Groups

    // Always 0 in my tests. Not sure what it could be. msg.addByte(unknown); That last unkown byte is how many more groups the player can add. There are 3 default groups on RL Tibia and premium players can add 5 more.
  12. gudan garam

    Optimizing TFS Pathfinding

    This occurs because T is stored in rows and not columns, so it is layed out in memory like this: T[0][0], T[0][1], T[0][2], ..., T[1000][999], T[1000]T[1000]. So when you are acessing its memory in the first loop, you have the region you are using already in cache because when the processor...
  13. gudan garam

    Scripter Scripting service lua, c++ and php - 11.4 (daily reward, analysers)

    He won't provide a link because its hasn't been released in any forums. Thats what they say all the time "you just copy and paste others ppl work" I don't mind if you pay me first or not.
  14. gudan garam

    TFS 1.X+ task system by limos, bug request another task

    If you finished god task and the npc asked for hellish rhino, that means you had the storage 12244 (hellish task on/off) set to 1. It could be either you messed up your storages with "/set" command, or your managed to bug the npc in a way that it finished your hellish rhino task but didn't...
  15. gudan garam

    TFS 1.X+ task system by limos, bug request another task

    I've installed the system and tested it, and it worked fine. The npc script is really messy and bad written. I have to leave right now 'cause its my brothers birthday but i'll be back in 2 hours and I'll re write the script for you. By messy I mean it has bad logic and repeated logic that can...
  16. gudan garam

    Scripter Scripting service lua, c++ and php - 11.4 (daily reward, analysers)

    I really don't get why people come here to talk shit xD I don't want to be friends with you buddy, go do other things. Also like the way you are saying i'm copy pasting code but can't prove it. People like you that have only been coding for tibia stuff on the internet is what get good people...
  17. gudan garam

    Scripter Scripting service lua, c++ and php - 11.4 (daily reward, analysers)

    Up. Back and available for services.
  18. gudan garam

    Doors error

    Which one?
  19. gudan garam

    TFS 1.X+ I have weird Health/Mana bug with transforms

    I'm sorry, I forgot. You must add the declartion of thoose methods: luascript.h below: static int luaPlayerAddManaSpent(lua_State* L); add: static int luaPlayerGetBaseMaxHealth(lua_State* L); static int luaPlayerGetBaseMaxMana(lua_State* L); My bad on that.
Back
Top