Skip to content
This repository was archived by the owner on Jan 10, 2026. It is now read-only.

Latest commit

 

History

History
26 lines (16 loc) · 859 Bytes

File metadata and controls

26 lines (16 loc) · 859 Bytes

Candor Setup

Loading Candor

While I currently do not have a startup script ready, you can load Candor by using the following line java -javaagent:<candorJar> -jar <candorJar>

Creating a module

Currently, to create a module you will need to extend the AbstractModule class, this wil give your class access to the module functionality.

You will also be required to add the following to your modules Manifest file:

Candor-Module-Class: <path to class extending AbstractModule>

You can view the genericmodule folder for an example.

You may also view the Sims 4 Module for a reference gradle file

Loading Candor in IDE

you will need to add the follwoing to your run configuration:

-javaagent:<relative path to lib/jar-loader.jar>

for Example, for me it is

-javaagent:lib\jar-loader.jar