RitoClient
RitoClient copied to clipboard
🤿 Deep dive into your RiotClient UX
🔨 Building
Prerequisites
- Visual Studio 2017
- Desktop development with C++
- Windows 8.1 SDK
Build steps
- Clone this repo
- Open
vsproj/RitoClient.slnin Visual Studio - Set configuration mode to
ReleaseandWin32(x86) - Press build
🌟 Getting started
Usage
- Run
bin/install.bat(as admin) to activate the core module - Put your JavaScript files in
bin/preloadfolder - Launch your RiotClient and enjoy!
Key bindings
- Ctrl + Shift + I to open DevTools
- Ctrl + Shift + R to reload the client
🚀 Runtime API
DataStore
Store your data locally like localStorage.
DataStore.get(key, fallback?)- get value by keyDataStore.set(key, value)- set value by keyDataStore.has(key)- does the key exist?DataStore.remove(key)- remove the given key