Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)
});
```