• 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

    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
  2. 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...
  3. 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...
  4. danilopucci

    Best item editor for 7.6?

    This should work for 7.4 until 10.77 versions: https://github.com/danilopucci/ItemEditor
  5. 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
  6. 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
  7. 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...
  8. 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
  9. danilopucci

    TFS 1.X+ old fluids 1.5 7.72

    lol... I wrote about this error on the post before yours
  10. 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
  11. danilopucci

    Lua Script npc backpack fluid tfs 1.5 7.72

    From the addBuyableItemContainer method definition: -- Adds a new buyable container of items. -- names = A table containing one or more strings of alternative names to this item. -- container = Backpack, bag or any other itemid of container where bought items will be stored...
  12. danilopucci

    TFS 1.X+ Lifefluid and POT nekiro version 7.72 1.5

    Quick fix: define the line below on your fluids.lua local distillery = {[5513] = 5469, [5514] = 5470} Explanation: This can be solved by making a check on this code and the error that you printed. I followed the error message: fluids.lua:65 (the error is on fluids.lua on line 65) The line 65...
  13. danilopucci

    TFS 1.X+ Lifefluid and POT nekiro version 7.72 1.5

    Did you add it? Yes, you can rename your modified fluids.lua file (ex: mana_fluids.lua), then go to actions.xml and on vials ID o change the script name to the new one. I am not sure, it is something like this on actions.xml <action itemid="1386" script="other/teleport.lua" /> <action...
  14. danilopucci

    TFS 1.X+ Lifefluid and POT nekiro version 7.72 1.5

    I will try to check later to be sure. But I think you can check it by yourself: go to actions.xml, check if there is the pot ID and a script related to it. If there is not, add it. I think it is the same script as vials (other/fluids.lua) if everthing is ok, check if the pot ID is correct on...
  15. danilopucci

    TFS 1.X+ Lifefluid and POT nekiro version 7.72 1.5

    Are you sure that you changed the file? Because the file that you replied on last are not modified. I am almost sure that you should make the jakub742's modification on line 56 of your file I am not able to test it now, but I can do it later
  16. danilopucci

    TFS 1.X+ burnt, poisoned, energized are rising fast nekiro 7.72 version 1.5

    Does it means that 1 TFS-Ticks = 8000 Tibia-cip-files Ticks?
  17. danilopucci

    Programmer Looking for OTClient + TFS 1.4 programmer (Paying you to tutor me)

    This was so deep. And I totally agree with this. 1649438259 This was so deep. And I totally agree with this.
  18. danilopucci

    Client OTC

    Probably you are compiling in Debug mode, which often fails to load properly and the exe size is much bigger because of the debug symbols and some other stuff. Try to compile on Release mode and everything should be fine (the size of .exe and the loading fail)
  19. danilopucci

    How and what I need for modify the Cipsoft files code? (RealOTS)?

    You can use a software decompiler (IDA, Ghidra, BinaryNinja) to decompile the code, edit it using assembly and try to "compile" again. The challenge is that the decompilation is not that easy, so you would need a hard knowlegde on C++ and how the compilers transform the code on assembly code...
  20. danilopucci

    Which version of tibia was the best pvp?

    Talking about Real Tibia PVP for me it is 7.8/7.92 as the hotkeys made player easier to heal and shoot, the EKs were almost invencibles and it leads to very good strategies traps and masslogs and this kind of stuff, as long as Ventrillo/Teamspeak organized teams, which contributed to this. The...
Back
Top