Skip to content

ScriptingModules

modules.list()                    // every module's registry name
modules.get('BedESP').enabled     // true / false
modules.get('BedESP').toggle();
modules.get('BedESP').enabled = true;
modules.get('BedESP').setting('Range').set(48);
modules.enabled('Stats')
modules.enable('Stats')  modules.disable('Stats')  modules.toggle('Stats')

Names are matched case-insensitively against the registry name, the same string /bitchos toggle takes, which is not always what the menu shows. modules.list() is the fastest way to find out what a build actually has.

The Modules section documents every built-in module and its settings.