automates toontown rewritten's login process
$ pip3 install --user --upgrade tooncher
# or
$ pip3 install --user git+https://github.com/fphammerle/tooncher@masterOptional: Install cpulimit to enable use of parameter --cpu-limit
$ sudo apt-get install cpulimit# default path: $HOME/.tooncher
accounts:
- username: toon
password: secret
- username: ceo
password: golf
- username: cfo
password: train
engine_path: '/opt/Toontown Rewritten/TTREngine'$ tooncher [username]tooncher --help shows all available options.
$ tooncher toon
$ tooncher ceo
$ tooncher --cpu-limit 70 cfoimport pathlib
import tooncher
tooncher.launch(
engine_path=pathlib.Path('/somewhere/toontown-rewritten/TTREngine'),
username='toon',
password='secret',
)