lolautoaccept/Readme.md

41 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2022-03-03 20:04:22 +01:00
# lolautoaccept
This is a tool, that tries to automatically accept a league of legends game.
2022-05-14 17:55:49 +02:00
It is developed on linux and there is no effort to port it to windows.
2022-07-04 23:23:38 +02:00
It works by accessing the launcher using the LCU-API more about that api can be found [here](http://www.mingweisamuel.com/lcu-schema/tool/).
I only tested this in normals and ranked (No Aram, Custom, URF, ....) but you may want to give it a try.
2022-03-03 20:04:22 +01:00
2022-05-14 18:16:39 +02:00
## Prebuilt Binary
2022-05-14 17:55:49 +02:00
There is a prebuild AppImage that should work on every linux x86_64 computer.
1. Download: [here](https://git.mrbesen.de/MrBesen/lolautoaccept/releases)
2. give execute rights `chmod +x LoLAutoAccept-*-x86_64.AppImage`
3. execute - dubble click or `./LoLAutoAccept-*-x86_64.AppImage`
## Dependencies
2022-04-20 23:29:40 +02:00
- Qt5
2022-07-04 23:23:38 +02:00
- libcurl
2022-05-14 17:55:49 +02:00
- [Log](https://git.okaestne.de/okaestne/Log) (is a submodule)
2022-03-03 20:04:22 +01:00
2022-05-14 17:55:49 +02:00
## Compile
Be sure to clone with submodules:
```
git clone --recurse-submodules https://git.mrbesen.de/MrBesen/lolautoaccept.git
```
Then in its root folder:
```
qmake
2022-03-03 20:04:22 +01:00
2022-05-14 17:55:49 +02:00
# build the appimage
make -j appimg
2022-03-03 20:04:22 +01:00
2022-05-14 17:55:49 +02:00
# or just the main binary
make -j
```
2022-03-03 20:04:22 +01:00
2022-05-14 17:55:49 +02:00
You can get better Logging with:
```
./lolautoaccept --debug-log
```
(This will also create a `log.txt`)