note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
GetConsoleVarAsFloat
Description
Get the float value of a console variable.
Name | Description |
---|---|
const cvar[] | The name of the float variable to get the value of. |
Returns
The value of the specified console variable.
0.0 if the specified console variable is not an integer or doesn't exist.
Examples
new Float:radius = GetConsoleVarAsInt("game.nametag_draw_radius");
printf("Nametag Draw Radius: %i", radius);
Notes
tip
Type 'varlist' in the server console to display a list of available console variables and their types.
Related Functions
- GetConsoleVarAsInt: Retreive a server variable as an integer.
- GetConsoleVarAsString: Retreive a server variable as a string.
- GetConsoleVarAsBool: Retreive a server variable as a boolean.