• 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

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    How did you created the directories? it looks like lack of permission rights on directories. to check the permission rights you can type the command ls -l Maybe you created them as sudo? Try to delete and create again, without sudo.
  2. danilopucci

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    Yay! you got the point that I tried to explain here. I just want to know which profilers offers plugins to connect its data output to a service like prometheus/datadog (I really want to know). What I tried to say on previous post was that some """tool""" like this one from Kondra can be used to...
  3. danilopucci

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    Thats why I wrote on the last line: I am not saying that this feature is revolutionary, solution of all issues of TFS etc.
  4. danilopucci

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    Yeah, sure!! Maybe I was not clear on words as it is on my mind :p How would you easily monitor your application on code-level with a profiler? At least on my professional experience I usually profile the application with some tool that you mentioned, on a controlled environment, get the logs...
  5. danilopucci

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    I think you are misunderstanding this feature. It is about STATISTICS on REALTIME running application, not really a profiling (even though you can use it to profile) Yes, if you are trying to profiling something there are alot of non-invasive tools to do it. But when you are professionally...
  6. danilopucci

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    Great contribution!! Btw, I am interested on new decay system
  7. danilopucci

    [7.4, 7.8, 7.92, 8.0] Sabrehaven.com based on Nostalrius 7.7 fork

    I got some errors on ubuntu20, I fixed it on a PR which is on master now
  8. danilopucci

    Details regarding any accusations made by the user Felipe93

    So sad to hear this. I am just here to say that I know fschuindt and he is very a professional and trusted person
  9. danilopucci

    Custom Memory Allocation in C++

    Q: Is it possible to implement a custom memory allocator in C++? A: Yes Q: That performs better than the default allocator provided by the standard library, in terms of both speed and memory efficiency? A: Maybe, depends on its application This kind of thing is very usual on Embedded Systems...
  10. danilopucci

    Someone can help with c++ tfs 1.2

    This should work: bool Npc::getNextStep(Direction& dir, uint32_t& flags) { SpectatorVec spectators; g_game.map.getSpectators(spectators, this->getPosition(), false, true, 10, 10); if (spectators.empty() || !spectator) { return false; } if...
  11. danilopucci

    how to take commits from another repository of another owner

    If you want to "download" the repository, you can simple: git clone https://github.com/ralke23/Greed-TFS-1.5-Downgrades.git After that you will have a local copy of the repository. After that you can checkout to another branch, make commits etc
  12. danilopucci

    TFS 0.X NPC with another NPC's speech

    Hello potinho. My guess would be as Xikini said about globals, but everything looks fine. What domodlib('task_func') do on first line of sample_task.lua does? Anyway, I took a look on both script, and something that caught my eye is on simple_task.lua on creatureSayCallback. It initializes a...
  13. danilopucci

    Convert a 7.4 map to be compatible with 7.6/7.72

    If you are using OTClient, you don't need to do this. If you are using Cipsoft client, you can try to edit .spr and .dat signatures by hexedit. The signatures are four first bytes of the files. I am not sure if it works, but you can try. I don't know if you are aware of, but there are some...
  14. danilopucci

    Best item editor for 7.6?

    This should work for 7.4 until 10.77 versions: https://github.com/danilopucci/ItemEditor
  15. danilopucci

    Convert a 7.4 map to be compatible with 7.6/7.72

    Hello glapa! This should work: https://github.com/nekiro/TFS-1.5-Downgrades/tree/7.72 If you want to see only code that I changed, you can find the implementation here: https://github.com/danilopucci/TFS-1.5-Downgrades/tree/olderMapsCompat
  16. danilopucci

    [7.4][OTX] RLMAP 100%, Port Hope 7.4, POI, Demon OaK, War System, Shared Exp ...

    check if you put the right server public IP on config.lua
  17. danilopucci

    House command "Aleta gom" not working

    Did you compile with TLM_HOUSE_SYSTEM flag? Check your spells.xml: <!--// Houses \\--> <spell name="Aleta Sio" words="aleta sio" maglv="0" mana="0" enabled="1"><vocation id="1" /><vocation id="2" /><vocation id="3" /><vocation id="4" /></spell> <spell...
  18. danilopucci

    Convert a 7.4 map to be compatible with 7.6/7.72

    Yes, I did the job. And with his agreement I made the changes on Nekiro's branch and now it is compatible with older maps
  19. danilopucci

    TFS 1.X+ old fluids 1.5 7.72

    lol... I wrote about this error on the post before yours
  20. danilopucci

    TFS 1.X+ old fluids 1.5 7.72

    I tested it and the "if target.itemid == 1" is only true when you use the mana fluid on the ground or on another creature... And when you do that the lua code falls into an error, as pointed here Actually on my tests the desired behavior is already achieved
Back
Top