Initial Setup

Please make your program and obtain the most recent files from the panel's resource center before configuring StackWorkShop Auth.

You must add the StackWorkShop.cs file to your program!

You will need to have your program secret, AID, ActivateKey, and JWT Token at hand

Initial Connection (Program.cs File):

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;

namespace YourProgramName
{
    class Program
    {
        static void Main(string[] args)
        {
            OnProgramStart.Initialize("APPNAME", "AID", "PROGRAMSECRET", "VERSION", "ActivateKey", "JWTToken", false, false);
        }
    }
}
The full parameter description is below for Initialize Function!
Application Name (APPNAME)
AccountID (AID)
Application Secret (PROGRAMSECRET)
Application Version (Version)
Activate Key (ActivateKey)
JWT Token (JWTToken)
AntiDebug (bool true|false)
ProcessKiller (bool true|false)

Last updated