• 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

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

    in your sources: luascript.cpp: First: Below registerMethod("Player", "addManaSpent", LuaScriptInterface::luaPlayerAddManaSpent); Add registerMethod("Player", "getBaseMaxHealth", LuaScriptInterface::luaPlayerGetBaseMaxHealth); registerMethod("Player", "getBaseMaxMana"...
  2. gudan garam

    TFS 1.X+ How to upgrade TFS/OTXServer to work with earlier tibia 11 versions?

    Ye, so the encryption I'm not sure because I haven't looked into it yet, thats what I've heard from people trying to upgrade to 11.75. The login, showing the game world name I'm pretty sure thats just a custm feature they added, you not being able to login has to do with far more things, rsa...
  3. gudan garam

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

    I appreciate the feedback. But I think its safer for both sides to have the price ruled by hours, if you want me to fix a script for example, I dont know how well is the script implemented, even if I look at the code I can mess up pricing the effort. So for example, yesterday I upgraded and...
  4. gudan garam

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

    No it's not, idk what file your talking about btw, i'd like to see that. I'm still working on it, not enough time for it rn tho but I plan to finish it in the next week or two. Good for you. With no experience, yes I agree, no reputation, idk about that because it seems to me you are saying...
  5. gudan garam

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

    I don't recall having worked for you therefore I don't see how you can tell me I don't have experience. Honestly, I don't want reputation/recognition from the community nor do I have to prove something to you before offering paid services here, all I have to do is to offer a good service to the...
  6. gudan garam

    TFS 1.X+ How to upgrade TFS/OTXServer to work with earlier tibia 11 versions?

    You can read protocolgame.cpp and protocolgamebase.cpp (only exists on otx) to see how the server handles that the packets client sends. I think the encryption changed on the 11.75 version (not sure) so you have not only the new features but also changes to encryption methods. I'll try to pass...
  7. gudan garam

    changes in weapons/items not working

    Can you post your weapons.xml here? I'm thinking you have the weapon duplicated.
  8. gudan garam

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

    Please contact me via PM isntead of replying here on the thread. Thanks. I can work with tfs 1.1 to 1.3 (otx), c++, lua and php. I can create/fix scripts, prices will vary but I'll let you know the price before hand. It is common that people will message me with simple problems, and I don't...
  9. gudan garam

    OTClient Tibia 11.49 Bug on open bp

    I had that same problem, I downloaded another client and it worked. I'll upload it here, mind you I got this from another person all I did was changing the client to localhost. MEGA
  10. gudan garam

    Lua Rarecandy.lua

    You can use the tag allowfaruse in actions.xml Example: <action itemid="2580" script="tools/fishing.lua" allowfaruse="1" />
  11. gudan garam

    TFS 1.X+ CreatureScript target

    I'm pretty sure you can do what you need in theese functions: Player::setAttackedCreature Game::playerSetAttackedCreature Game::playerCancelAttackAndFollow
  12. gudan garam

    TFS 1.X+ Ninjas Tfs 8.00

    What is written in the debug windows when you re-open the game? There must be a change in the bytes the server needs to send to the client from 8.00 to 8.10, thats probably whats causing the debug.
  13. gudan garam

    Core Dumped TFS 0.4

    Could you post your game.cpp and item.cpp somewhere and link it here? Any extra infortmation you can give about the crash?
  14. gudan garam

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

    I'm not really sure how it works when you equip an item that gives you extra hp, so I will suggest this: When adding hp and mana on the transform script you should instead of taking players maxhealth, take the players level * vocation hp gain. So lets say the vocation KNIGHT gets 10 hp every...
  15. gudan garam

    C++ How to save the server before it crashes? [ANTI ROLLBACK]

    I'd love to see what you have to suggest. I like this but I haven't found anything on google about it, thanks anyways.
  16. gudan garam

    C++ How to save the server before it crashes? [ANTI ROLLBACK]

    I'd be running it on a linux. But see... persistent saves could easily cause lags to the whole server, thats why I thought it could be achieved in other ways.
  17. gudan garam

    C++ How to save the server before it crashes? [ANTI ROLLBACK]

    Hello guys, so I started looking into Anti Rollback systems but they all seem really heavy approaches, meaning, for example, that they save every player every 30 seconds, or they call a save to a player everytime he does some action that is worthy of being saved, i.e. moving an item, trading...
  18. gudan garam

    TFS 1.X+ 10.x/11.x OT without certain features feasible?

    There are some 1.x downgraded verisons of tfs out there. just search for it.
  19. gudan garam

    Lua Function creature:canChangeDirection(bool)

    Shouldn't this: bool Game::internalCreatureTurn(Creature* creature, Direction dir) { if (creature->getDirection() == dir || creature->canChangeDir()) { return false; } be: bool Game::internalCreatureTurn(Creature* creature, Direction dir) { if (creature->getDirection() ==...
  20. gudan garam

    Error Core Dumped

    O.O What will that do? I'm confused.
Back
Top