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

    Solved Help with corpse (onDeath) TFS 1.0

    I have this same problem. I have tried using addEvent as well. Nothing seems to be working. I can not get items out of a corpse for the life of me. What do I need to do??? This is my code. line 32 prints 0 line 33/34 do not print at all local RarityDrops = CreatureEvent("rarity_drops")...
  2. Itutorial

    Crash bug

    Has anyone figured out what was causing this? It still seems to be in my sources. It has to do with decaying items. Whenever I kill a monster it crashes the server and has Game::checkDecay() written all over it. Specifically when it is checking for the attribute for decay and setting it. Can...
  3. Itutorial

    C++ Sending custom attributes to client

    I know I am close to getting this because I can std::cout << attr->value and get the correct value for my custom attribute on the item. For some reason I cannot for the life of me get the value out of it when sending it to the client though. I can't just use attr->value.. I tried to copy how the...
  4. Itutorial

    C++ Sending custom attributes to client

    How can I do this? This is what I have so far Server Side: void NetworkMessage::addItem(const Item* item) // Send custom attributes to client. Item* tmpItem = item->clone(); add<uint16_t>(CUSTOM_ATTR_LAST - 1); // Send size of custom attributes for (uint16_t key = CUSTOM_ATTR_RARITY; key <...
  5. Itutorial

    Compiling Luavarient errors after adding .clang-format

    Kind of shot myself in the foot. I have upgraded tfs 1.4/1098 to current tfs sources as much as possible. I just added the "new" .clang-format file and it broke my luavariant.h file somehow or at least thats what it seems to be. Does anyone have an idea what it could be? #ifndef...
  6. Itutorial

    trying to put only 1 skill for melee.

    check post date
  7. Itutorial

    trying to put only 1 skill for melee.

    You should still have weapon types. Idk why exori hur would have any issue. You should be able to have sword, axe, club in items.xml. They should all be linked to the new skill_melee. Then exori hur would be fine. You just determine the weapon type as normal again in items.xml.
  8. Itutorial

    TFS 1.X+ Vocation Level Up Item Reward

    You need to add the vocations here: local vocations = { [1] = rewards.SORCERER, -- Sorcerer [2] = rewards.DRUID, -- Druid [3] = rewards.PALADIN, -- Paladin [4] = rewards.KNIGHT -- Knight } If you use only the standard rl vocations you can change this local vocationId...
  9. Itutorial

    RevScripts Problem after adding movement memory leak fix

    nvm https://github.com/otland/forgottenserver/commit/d59a5cbb1275fdf1c8cfedc7e2c0aa19ade176be
  10. Itutorial

    RevScripts Problem after adding movement memory leak fix

    Unfortunately no. Thanks for the suggestion though.
  11. Itutorial

    Over flow, infinite loop

    This is not TFS 1.2 I dont think anyway. but maybe you can change this: Line 108-110 if not tile or not tile:getGround() then creature:moveRel(fromPosition.x, fromPosition.y, fromPosition.z) return true end
  12. Itutorial

    RevScripts Problem after adding movement memory leak fix

    I implemented [Revscriptsys] fixing memory leak in Actions & Moveevents (#4742) after I get an error on two of my movement scripts. All others seem to be fine. The only difference between these two and my other ones is they both use actionid to identify the item. local moveevents =...
  13. Itutorial

    Over flow, infinite loop

    You should have a file in lua. Maybe in data/movements/scripts/teleports.lua. or if you have revscripts it could be in data/scripts/movements/teleports.lua. If you do paste it here.
  14. Itutorial

    TFS A* Algorithm :D

    Updated on github. https://github.com/otland/forgottenserver/pull/4637
  15. Itutorial

    TFS 1.X+ TFS 1.5 setCustomAttribute crash

    I will check it out and report back. Thank you. There are a few people on here that don't like me I think. I usually get help though so I aint mad about it.
  16. Itutorial

    Gatekeeping

    @Sarah Wesker Insert insult here
  17. Itutorial

    Gatekeeping

    I matched your energy.
  18. Itutorial

    Gatekeeping

    A lot of delusion in this. Tibia is not even close to as popular as it used to be. If it was this community would be more active. You sound like you need a shoulder to cry on with all that anger in your text. It is equivalent to the deluded babbling of a 40 y/o conspiracy theorist. If you have...
  19. Itutorial

    Gatekeeping

    I don't see that at all. There is thousands of codes released here including all of the tools, ect. Anyone that really wanted to learn how to create things for themselves would be able to pretty quickly if they tried.
  20. Itutorial

    Gatekeeping

    It is all about what peoples time is worth. Most people in OT are now much older and therefor their time is worth a lot more. If I spend 2 weeks creating an amazing system that could be thousands of dollars I didn't make just to give something to people that won't ever give back. Some people...
Back
Top