• 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

    TFS A* Algorithm :D

    Alright, this is something that can be done. I am pretty sure this is how it should be with pathfinding but who knows. So, marks fix had the monster update the path anytime the monster moved and anytime the target moved. This fix will make it so the path will only update if the end position is...
  2. Itutorial

    TFS A* Algorithm :D

    TFS pathfinding right now acts like Dijkstra's when they went for A*. A* is way faster in most cases. It does have one problem which is that it will walk you into walls in some cases before heading on the right path again because that's how the system works but its far more efficient. I will...
  3. Itutorial

    TFS A* Algorithm :D

    Facts. I haven't really looked into that part yet. I wanted to fix the algorithm first just because it actually is really important when finding the solution. Sometimes one thing works. You fix something, then that same thing stops working because it was set up perfect for the other code. I...
  4. Itutorial

    TFS A* Algorithm :D

    Yeah there has been a few fixes like that but this is the actual pathfinding itself. My method uses 1/4th the amount of squares and in some cases even less. I did see a post with someone that messed with it before and he had a good way to test the speed of the algorithm. I might try to figure...
  5. Itutorial

    TFS A* Algorithm :D

    I spent way to long messing with this. A few hours. I am no pro but I learned how the code behaves and figured out a way IMO to make it better. It hasn't been tested to the limit but I have tested it with 50+ monsters following me and ran through a few obstacles. There is a lot of things that...
  6. Itutorial

    A server with a level limit.

    Level limit is 100% fine. The reason most games did a level limit was because its a lot easier to monitor character progression through armor and weapons than to stop them from leveling at certain speed. Which always ends up being changed once x number of people pass it. You can either stop...
  7. Itutorial

    The Violet Project - CipSoft Reverse Engineering Project

    I would say until 8.6+ it worked like that. I only played rl tibia from 7.72-8.6 and that is one of the main things I remember. In fact it was one of the best ways to pull people from depot because it worked in reverse too. If you pushed a tile and a player walked into it at the right time it...
  8. Itutorial

    The Violet Project - CipSoft Reverse Engineering Project

    In old tibia you could move other players from more than 1sqm away. It should only happen if the push was sent before the player walks out of sqm.
  9. Itutorial

    TFS 1.3 Capture the Flag

    In function onPrepareDeath(creature, killer) Change last return false to return true
  10. Itutorial

    Feature Instance System

    if (creature->getInstanceID() != getInstanceID()) { return false; } There you go bud. Nice and easy for you now.
  11. Itutorial

    Feature Instance System

    Why even be here then? Are you a leecher?
  12. Itutorial

    Feature Instance System

    Yeah I saw that too back when I made it. What it does is checks the creatures instance vs the players, then checks the players vs the creatures. It shouldn't ever get to the second part. Glad I could help you understand. 1659954467 Yet you came and pointed out problems with mine and didn't...
  13. Itutorial

    Feature Instance System

    I haven't started the code for items. I will work on it tomorrow and let you know if I get it working. So far I worked on text messages, magic effects, corpses, blockhit, distance effects, talking/yelling, ect.
  14. Itutorial

    Feature Instance System

    I am just saying you are annoying. You are the one calling me names snowflake. Almost done fixing the "bottom of the iceberg" 1659889269 I had to add a fix in game.cpp the function changeInstance was modified. Make sure if anyone did add this to fix it. The code is fixed on the main post...
  15. Itutorial

    Feature Instance System

    Bro, I get why you point the problems out but that's all you do. I am also aware, or am pretty, sure you contribute to the master branch which is fine. I don't go to an artist and say "Here all the shit that's wrong with your picture." especially when he is giving the picture to charity in hopes...
  16. Itutorial

    Feature Instance System

    Go make it then man. How about contribute instead of pointing out problems? 1659878889 It does hide effects and chat, ect. idk about browse field and items but it wouldn't be hard to just add a canSee type thing for those also.
  17. Itutorial

    TFS 1.2 Wave event LUA SCRIPT ERROR and other issues

    Change this function function MW_spawnBosses(waveTable) for i = 1, #waveTable.boss do local MONS = Game.createMonster(waveTable[i].boss[1], waveTable[i].boss[2]) MW_MONSTERS[#MW_MONSTERS + 1] = MONS:getId() end end change to function MW_spawnBosses(waveTable) for i = 1...
  18. Itutorial

    Feature Instance System

    It is not ready for production. It is missing a few critical things. I will come back to it at some point in the future when I have more time on my hands. This is my fix for my previous thread. Hopefully they will remove the old one. This system is critical for any server that has systems...
  19. Itutorial

    TFS 1.2 Wave event LUA SCRIPT ERROR and other issues

    I will work on another version of this. Do you use revscripts? Mainly going to clean up some of the uneeded code/unclean code.
Back
Top