config
get_bool( key ): bool
Returns a boolean from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
var raging = config.get_bool( "rage_aimbot_enabled" );
get_int( key ): int
Returns an integer from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
var limit = config.get_int( "rage_fakelag_limit" );
get_double( key ): double
Returns a double from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
var range = config.get_double( "rage_aa_jitter_range" );
get_float( key ): float
Returns a float from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
var random_update = config.get_float( "rage_aa_random_update" );
get_color( key ): color_t
Returns a color from the specified key
Type
Name
Description
string
key
The config variable you want to retrieve
var ammo_color = config.get_color( "esp_enemies_ammo_color" );
set_bool( key, value )
Sets a boolean at the specified key
Type
Name
Description
string
key
The config variable you want to set
boolean
value
The new value of the config variable
config.set_bool( "rage_aimbot_enabled", true );
set_int( key, value )
Sets an integer at the specified key
Type
Name
Description
string
key
The config variable you want to set
int
value
The new value of the config variable
config.set_int( "rage_fakelag_limit", 6 );
set_double( key, value )
Sets a double at the specified key
Type
Name
Description
string
key
The config variable you want to set
double
value
The new value of the config variable
config.set_double( "rage_aa_jitter_range", 65.35 );
set_float( key, value )
Sets a float at the specified key
Type
Name
Description
string
key
The config variable you want to set
float
value
The new value of the config variable
config.set_float( "rage_aa_random_update", 1.23 );
set_color( key, value )
Sets a color at the specified key
Type
Name
Description
string
key
The config variable you want to set
color_t
value
The new value of the config variable
config.set_color( "esp_enemies_ammo_color", new color_t( 255, 0, 0, 255 ) );
Last updated
Was this helpful?