exploits

get_charge

Returns current charged ticks for exploits

int get_charge()

Example

print("charged ticks", exploits.get_charge())

get_max_charge

Returns maximum amount of charged ticks for exploits

int get_max_charge()

Example

print("max charged ticks", exploits.get_max_charge())

The following functions should ideally only be called in setup_command and run_command callbacks

force_uncharge

Releases current charged ticks for exploits, will teleport you forward

void force_uncharge()

Example

exploits.force_uncharge()

force_recharge

Forces cheat to recharge ticks for exploits

void force_recharge()

Example

exploits.force_recharge()

block_recharge

Stops the cheat from recharging ticks for exploits

void block_recharge()

Example

exploits.block_recharge()

allow_recharge

Allows the cheat to recharge ticks for exploits

void allow_recharge()

Example

exploits.allow_recharge()

Last updated