get_match_setting
From Rivals of Aether Unofficial Workshop Manual
Returns a setting of the current match. This includes rule overrides by custom stages. If the rule override for time is set to 0 (disabling the timer), then SET_TIMER
will still return the normal time setting.
Syntax[edit | edit source]
get_match_setting( setting );
Arguments[edit | edit source]
Argument | Type | Description |
---|---|---|
setting
|
:real
|
The match setting to check. List of possible settings:
SET_STOCKS SET_TIMER SET_TEAMS SET_TEAMATTACK SET_HITBOX_VIS SET_SEASON SET_RUNES SET_PRACTICE SET_TURBO SET_SCALING |
Returns[edit | edit source]
type (descriptive name)
Examples[edit | edit source]
Basic[edit | edit source]
//This sets a wave amount for a custom game mode that overrides the normal timer. waves_left = get_match_setting( SET_TIMER );