|
|
пре 11 месеци | |
|---|---|---|
| .github | пре 11 месеци | |
| tests | пре 4 година | |
| tooncher | пре 2 година | |
| .gitignore | пре 5 година | |
| .pylintrc | пре 11 месеци | |
| CHANGELOG.md | пре 11 месеци | |
| LICENSE.txt | пре 5 година | |
| Pipfile | пре 11 месеци | |
| Pipfile.lock | пре 11 месеци | |
| README.md | пре 5 година | |
| mypy.ini | пре 5 година | |
| setup.cfg | пре 8 година | |
| setup.py | пре 11 месеци |
automates toontown rewritten's login process
$ pip3 install --user --upgrade tooncher
# or
$ pip3 install --user git+https://github.com/fphammerle/tooncher@master
Optional: 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 cfo
import pathlib
import tooncher
tooncher.launch(
engine_path=pathlib.Path('/somewhere/toontown-rewritten/TTREngine'),
username='toon',
password='secret',
)