GUI program for generating a graph.txt of traversable paths around Runescape Classic.
Very useful for writing highly efficient bot walking APIs that can go anywhere in the map.
- Load the RSC map (that was shamelessly stolen from APOS)
- Load the existing graph.txt
- Plant nodes and edges
- Label edges (in case you need custom code besides just "walkTo" to go between two nodes, i.e open a Gate, use a Ladder)
- Arrowkeys to move around the map
+and-to zoomEscto deselect the currently selected node^Zto undo last action
pip install -r requirements.txtpython webwalk_editor.py
- I plan to add this manually to APOS and IdleRSC. Simply use their
walkTowardsAPI method (todo) - If you want to integrate this manually, 1. Parse
graph.txt(I kept it as simple as possible) 2. Find a node in the graph you can walk to from your start 3. Astar until you get close to the end 4. Walk to your end position. You will also need to implement custom handlers for all the labeled edges, since those edges probably need custom logic
