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

    Problem trying compile TFS 1.2 7.4 in Ubuntu

    "Could NOT find GMP (missing: GMP_INCLUDE_DIR GMP_LIBRARIES GMPXX_LIBRARIES)" try install libgmp library: sudo apt install libgmp-dev
  2. danilopucci

    .rec files (old tibiacam files) how do I watch them?

    I think there is a way to play all the files with the same Tibicam. I think the name is Tibia Time Machine, not sure about that By the way, it would be awesome if we create a repo with all the cam files. Does anybody knows if someone did it before?
  3. danilopucci

    RME won't use items.otb from 7.72 downgrade (Unsupported items.otb version)

    Just to do not confuse all this things about versions: There is a header version (the integer value of the header) and the version ID. OTBM version that is printed on the code that I refered previously is the header version, the version which RME prints is the version ID. So when you load that...
  4. danilopucci

    Problem loading map in TFS 1.2

    Ok, I reproduce your error and it is solved. The solution was make the changes that I mentioned before. Maybe you missed something, because only changing replacing the files doest even compiles the code. I commited the code modifications here
  5. danilopucci

    RME won't use items.otb from 7.72 downgrade (Unsupported items.otb version)

    In terms of sprites this is not a rule. You can have a header version = 2 with 7.4 sprites, for example. Or any combination. In terms of file structure, there is a difference. OTBM is basically: header info - the one with map version, item version etc list of attributes (file description...
  6. danilopucci

    RME won't use items.otb from 7.72 downgrade (Unsupported items.otb version)

    I am sorry, now I got it :p Yeah, so you are right about deal with the ugly sprites, but maybe I have a hope for you avoid doing it manually. I never did it, but you can give a try and test: Open 7.4 .spr and .dat files using ObjectBuilder: File -> Open -> Client Folder: folder with...
  7. danilopucci

    Problem loading map in TFS 1.2

    Its weird because the code commented is exactly where your code ran and printed the error that you previously posted. But if you are saying that you are sure about this, I don't know how to solve this for now. I can try to reproduce this error on few hours. Can you share the items.otb that you...
  8. danilopucci

    Problem loading map in TFS 1.2

    Did you commented the code block below? /*if (headerVersion == 0) { //In otbm version 1 the count variable after splashes/fluidcontainers and stackables //are saved as attributes instead, this solves a lot of problems with items //that are changed...
  9. danilopucci

    RME won't use items.otb from 7.72 downgrade (Unsupported items.otb version)

    Try to add this lines std::cout << "> Map version info: " std::endl; std::cout << "\t\t OTBM version:" << root_header.version << std::endl; std::cout << "\t\t OTBM version items: minor is " << root_header.minorVersionItems << "major is " << root_header.majorVersionItems << std::endl; std::cout...
  10. danilopucci

    Problem loading map in TFS 1.2

    I put an explanation about this stuff on this post You can try to use the iomap.cpp, items.cpp and item.cpp that is on my branch (as long as its header files)
  11. danilopucci

    RME won't use items.otb from 7.72 downgrade (Unsupported items.otb version)

    I would place a better explanation about converting the map when I get access to my personal computer, but here is how all this stuffs works, basically: About .otbm files .otbm versions, say map.otbm has a header with some info: OTBM version: value = 0 for otbm1; 1 for otbm2; 2 for otbm3, 3...
  12. danilopucci

    RME won't use items.otb from 7.72 downgrade (Unsupported items.otb version)

    Great!! So could you please share the errors/warning of your console? just to know if I missed something
  13. danilopucci

    Tips for getting map working with TFS-1.5-Downgrades (7.72)

    @machinehum I recently made a PR with some changes. It would be great if you can test it and check if this solves your problem (by reading yuor post, I think it should solve) https://github.com/nekiro/TFS-1.5-Downgrades/pull/119
  14. danilopucci

    RME won't use items.otb from 7.72 downgrade (Unsupported items.otb version)

    I recently made a PR with this changes: https://github.com/nekiro/TFS-1.5-Downgrades/pull/119 The PR is waiting for tests before merge to the 772 branch, it would be great if you or someone else test it 1645624518 By the way, I think I can help on your map conversion. I am out of access my...
  15. danilopucci

    Not valid packet size Error

    You should provide more informations: what is your distribution? OTX, TFS... version this error is on client or server?
  16. danilopucci

    TFS 0.X [OTX 2] Crash GDB

    Can you share the following methods? Game::removeCreature Player: onCreatureDisappear Player::clearPartyInvitations Party::isPlayerInvited
  17. danilopucci

    fix vial of manafluid

    The problem is at your items.xml Change: <item id="2025" article="a" name="pool"/> <item id="2026" article="a" name="pool"/> <item id="2027" article="a" name="pool"/> <item id="2028" article="a" name="pool"/> <item id="2029" article="a" name="pool"/> <item id="2030"...
  18. danilopucci

    Retrocores serious privacy violation ! Watch out !

    We cannot know. It is more likely that only when the client are opened. I think maybe it have a detection algorithm running on client and when it detects something, he take the screenshot and grab the data from it. By the way, does anybody knows how to "decrypt" the code like Kekando and Amoaz did?
  19. danilopucci

    Gdb Crash - Otx

    Oh, thats true. Smart pointers <3 1644867713 Oh, thats true. Smart pointers <3
  20. danilopucci

    Gdb Crash - Otx

    The problem is on the very beggining of the ConjureSpell::internalConjureItem. Replace the: if(!transform) { Item* newItem = Item::CreateItem(conjureId, conjureCount); if(!newItem) return RET_NOTPOSSIBLE; ReturnValue ret =...
Back
Top