RitoClient icon indicating copy to clipboard operation
RitoClient copied to clipboard

🤿 Deep dive into your RiotClient


RiotClient

RitoClient

🤿 Deep dive into your RiotClient


🔨 Building

Prerequisites

  • Visual Studio 2017
    • Desktop development with C++
    • Windows 8.1 SDK

Build steps

  1. Clone this repo
  2. Open vsproj/RitoClient.sln in Visual Studio
  3. Set configuration mode to Release and Win32 (x86)
  4. Press build

🌟 Getting started

Usage

  1. Run bin/install.bat (as admin) to activate the core module
  2. Put your JavaScript files in bin/preload folder
  3. 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 key
  • DataStore.set(key, value) - set value by key
  • DataStore.has(key) - does the key exist?
  • DataStore.remove(key) - remove the given key