Skip to content

II. Installation

harshfeudal edited this page Dec 11, 2022 · 3 revisions

This project was made using Visual Studio, so basically you cannot see my .sln files because I have ignored it. To use this project, you should generate it by using Premake.

1. πŸ’» Generating

So basically, I have written premake5.lua for generating it. Here are these steps:

  1. Download premake5.exe from their website
  2. Open the folder where you downloaded this project onto, put the premake5.exe file into this project (Insert the file to the directory where Raiden Shogun.rc is located)
  3. On the navigation bar, for example D:/Harshfeudal/Raiden Shogun/, clear all and type cmd on that, then enter and the terminal will release
  4. On that terminal, type:
$ premake5 vs[version]

Example: If you're using Visual Studio 2022 like me, just do it like this:

$ premake5 vs2022
  1. Rename the .example.config.json file to config.json. Add your bot token and client secret in that file:
{
   "token": "[add your bot token in here]",
   "client_secret": "[add your bot secret in here]"
}
  1. Build, run, and enjoy!

Note: Please add your token after you encrypt it into Base64. For encryption, you can use an online Base64 converter or use my library!

2. πŸ“š Libraries and version

These are the libraries that we're using in this project:

3. πŸ“œ Some notes

This project only supports:

  • Microsoft Windows 10 x64
  • Visual Studio platform x64
  • C++ 17 ISO/IEC 14882
  • Please install .dll files on dpp page and put it near your .exe executable file so that it will run well
Clone this wiki locally