process

Interact with the process class

Process Name

process.variables.processName

This is the string for the process name

Open Proc

process.openProcess();

This will use the string from Process Name automatically

Example:

process.variables.processName = "csgo"; // access the "process" class and inside its class variables set the process name
process.openProcess(); // attach memory reader to the process using the process class
var gameClient = memory.getModuleBase("client"); // get client.dll from csgo from the "memory" class

Last updated