Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. geno

    Selling failed 9hp skiller

    $6.26
  2. geno

    Help with my A* implementation T_T

    Managed to fix the problem, a node would reset all the edges parents even if they already have one, resulting in a node having a parent that had their Child as the parent -> infinite loop. simply changed edge.setParent(currentNode); To: if(edge.getParent() == null) edge.setParent(currentNode);
  3. geno

    Help with my A* implementation T_T

    Why is it sketchy to use the manhattan distance between 2 tiles to evaluate the cost of g and h? I believe the search works since it calls the construct path which then leads to an infinite loop. I think I do something wrong when I set a nodes parent, which is an error Id do same with both...
  4. geno

    Help with my A* implementation T_T

    No, read some research papers. I use tile position for the heurestic and more.
  5. geno

    Help with my A* implementation T_T

    Hello, my A* implementation have been giving me a headache for the past hours and am now turning here for help. Here are 2 snippets of my code, 1 snippet is the part of my code that searches through the nodes and do the open/closed list operations and the second snippet is the part that...
  6. geno

    I make Fisher

    bak off m8
  7. geno

    [DEV] RedDungeon

    One approach is to floodfill all rooms, when you know contents of rooms you can evaluate the room type. Then you can handle the rooms and if you find the boss room go smash him. After writing tailored combat code for each boss of course.
  8. geno

    Resource [List] Known Varps

    do the varpbits on runemate have the same addresses as the ones on powerbot? If so I have some
  9. geno

    Jagex mods discussing powerbot and how easy to detect it is

    All clients are detectable one way or another. However detected? runemate is not by jagexs current bot defense methods. It annoys me that everyone mixes detected and detectable up all the time.
Top