Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dginovker/runescape-classic-webwalker
Used for creating a good webwalker for RSC bots
https://github.com/dginovker/runescape-classic-webwalker
bot botting rsc runescape runescape-classic
Last synced: 11 days ago
JSON representation
Used for creating a good webwalker for RSC bots
- Host: GitHub
- URL: https://github.com/dginovker/runescape-classic-webwalker
- Owner: dginovker
- License: agpl-3.0
- Created: 2024-02-12T04:28:46.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-05-21T05:02:31.000Z (6 months ago)
- Last Synced: 2024-10-15T22:21:16.770Z (23 days ago)
- Topics: bot, botting, rsc, runescape, runescape-classic
- Language: Python
- Homepage: https://rsc.vet
- Size: 1.37 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RSC Webwalker
![Image showing nodes around Gnome Stronghold entrance](https://i.imgur.com/J0m93lq.png)
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.
## Features
* 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)## Hotkeys
* Arrowkeys to move around the map
* `+` and `-` to zoom
* `Esc` to deselect the currently selected node
* `^Z` to undo last action## How to run
* `pip install -r requirements.txt`
* `python webwalk_editor.py`## How to use with a Bot Client
* I plan to add this manually to APOS and IdleRSC. Simply use their `walkTowards` API 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