• 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

    Tibia 7.4 Bot Development

    Are you looking for tibia 7.4 client? or the 7.72 one? A good source of research is the tibia programming forum: Forums (https://tpforums.org/forum/) It does not look to be online anymore, but you can search things by looking at wayback machine. But anyway It looks that this link still works...
  2. danilopucci

    Theotxserver Crash

    By the logs that you sent, it looks something related to Banishments. Did you ban the account or ban the IP of someone recently? I think there is a known error regarding the IP Ban on olde versions of otxserver. I suggest you to check this part of code and compare with the otxserver oficial...
  3. danilopucci

    OTClient Any in-game map editor?

    This would be very useful. Nowadays the maximum that we have is to convert your map into json and text-compare between versions. Then you would need to read by yourself and identify the changes. But it is definitely not much productive, I would use it just to debug some map changes between...
  4. danilopucci

    Source's custom OT game engine (TypeScriptFTW)

    Very nice! Reading your change list, just come to my mind the questions, considering that it is a brand-new project are you using any unit/integration tests on this project? are you following any architecture guidelines, such as clean architecture or similar? Keep working, it looks very promising!
  5. danilopucci

    Retronia Online | Reverse Engineering 7.4 | Brazilian Project Server

    Looking forward to play on Retronia! I had the opportunity to work for Retronia on some features and this is a very serious project with commited staff! The future is bright for Retronia! By the way what is the "Dummy Training System"? And the NPC module is like the one from 8.2? :p
  6. danilopucci

    Feature Cam system

    Oh nice, I didn't notice that! Well, I did not tested it, but this may work fine: void Protocol::handleMessage(const uint8_t* buffer, const uint16_t msgSize) { const int HEADER_SIZE = 3; if (isConnectionExpired() || camActive != 3 || !cam.good()) { return; } timeNow...
  7. danilopucci

    C++ How to change the folder where the theforgottenserver.exe file is generated

    You need to change also "Diretorio de Trabalho" on "Depuracao", put the same value that you did on "Diretorio de Saida" $(ProjectDir)../ PS: I would download Visual Studio english language pack, it will make your like much easier while searching for errors and configurations
  8. danilopucci

    Feature Cam system

    Amazing! Thanks for this contribution. The only thing that I would say about handling more players is that the program is making disk IO operations on the same thread as the server process messages, this would not scale with more players online. Maybe from 20 to 100 is still OK. To make it...
  9. danilopucci

    AAC tibiacom fonts

    Try to upload this images here: https://www.myfonts.com/pages/whatthefont
  10. danilopucci

    Compiling Item editor 7.72

    Try this one: GitHub - danilopucci/ItemEditor (https://github.com/danilopucci/ItemEditor) You can get the compiled version on releases
  11. danilopucci

    Problem with the delivery of items from ITEM SHOP! Tfs 1.1

    This is not a solution, but a hint to start understanding what is wrong: check if you have storeinbox.cpp on your project. If it does not, your project is not compatible to store and adding the lua and xml files is not all that you have to do to make it compatible
  12. danilopucci

    C++ OTS statistics 1.4 on Windows

    I got it on Windows. Using visual studio, I had to define STATS_ENABLED on preprocessor definitions. Also, remember to create the stats folder
  13. danilopucci

    TFS 1.X+ Error with Depot Duplicate - Nekiro 1.5

    It looks that it is saving or loading it twice.... Did you changed something on iologindata.cpp? can you share your loadPlayer and savePlsyer methods?
  14. danilopucci

    TFS 1.5 10.98

    Change this couple lines to this ones
  15. danilopucci

    TFS 0.X How to create server logs on linux?

    If you want to log the output of a screen session, you can do this: screen -L -Logfile log.txt ./tfs There is a more useful one, which is going to write the timestamp on the log, so this way you can check it later and record when this was loaded: screen -L -Logfile log-$(date...
  16. danilopucci

    C++ item.cpp problem after add new commit

    std::setfill is being used on line 1130 on your code, it is defined on <iomani>. It is included on your code but it is commented on line 45. By the way, what is nekiro 9.0 server? Hint: You can go to diff view on github, it is easier to view the error. Check the image below for an example...
  17. danilopucci

    Attributes not being saved on LOGOUT/LOGIN

    Did you implemented the save attribute and load it to the item? What I would do is add some debug code (or even debug it) and check if it is saving the attribute and then loading it and checking if it is being loaded properly.
  18. danilopucci

    Webdesign [GESIOR] Retronia layout

    Very nice! by the way, looking forward to play Retronia
  19. danilopucci

    old version wanted rev 117 for tibia 8.7 ronots

    https://github.com/OTCv8/otclientv8/tree/84081026870f6e3a1b3fac0aeed4c7e653fe1d07
  20. danilopucci

    Cast System TFS 1.3 by Nekiro

    I am not sure if it is 100% the same from gigastar, but there is one here: https://github.com/Fablow77/TFS-CastSystem
Back
Top