Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raphaelkieling/auto-league-of-legends
Create a automatic way to accept a match, pre select a champ, ban, select and change runes and speels using other sites
https://github.com/raphaelkieling/auto-league-of-legends
Last synced: 2 days ago
JSON representation
Create a automatic way to accept a match, pre select a champ, ban, select and change runes and speels using other sites
- Host: GitHub
- URL: https://github.com/raphaelkieling/auto-league-of-legends
- Owner: raphaelkieling
- Created: 2020-06-10T02:57:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-30T13:29:44.000Z (over 3 years ago)
- Last Synced: 2023-03-03T10:52:03.731Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Auto Lol
```js
const connector = new LCUConnector();connector.gameConnector.on("queue-match-found", () => {
//to accept a match founded on queue
connector.gameConnector.accept()
});connector.gameConnector.on("match-session", (gameSession: GameSession | null) => {
if (!gameSession) return;connector.gameConnector.selectChampion(gameSession.getMyPickAction().id, 84)
});
```