Quick Start Guide
Here's a revised version of the Quick Start Guide, formatted for GitBook:
Quick Start Guide
Requirements
Windows 10 & 11 (22H2 up to 24H2)
Hyper-V enabled in Windows Features
SecureBoot off
UEFI Bootmode
NX Protection disabled
HVCI disabled
Step 1: Download the Components
Download the following files from our official Discord Server:
Styx-Loader.exe
Styx-Init.exe (or Styx-Init.dll)
StyxLib.lib
Styx.h
Step 2: Initial Setup
Run
Styx-Loader.exe
with administrator privileges.If everything is successfull, you will be prompted to restart your PC. Press "yes" if you want to immediatly restart or no, if you want to manually restart your PC (recommend if you have Tasks open that you want to save.)
Step 3: Post-Restart Initialization
After the PC restarts:
Run
Styx-Init.exe
with administrator privileges.
Step 4: Implement Styx in Your Project
Add
StyxLib.lib
andStx.h
to your project.Include the header in your code:
#include "Styx.h"
Configure your project settings to properly link with StyxLib.lib.
Alternative: Using Styx-Init.dll
For a more streamlined process, you can integrate Styx-Init.dll into your own loader:
Include Styx-Init.dll in your project.
Load and initialize the DLL before using any Styx functions.
Example Implementation
For an example use I would like to refer you to our private Repository.
Or check our our Example Page here:
ExampleLast updated