GetConsoleVarAsString
คำอธิบาย
Get the string value of a console variable.
Name | Description |
---|---|
const varname[] | The name of the string variable to get the value of. |
buffer[] | An array into which to store the value, passed by reference. |
len | The length of the string that should be stored. |
ส่งคืน
The length of the returned string. 0 if the specified console variable is not a string or doesn't exist.
ตัวอย่าง
public OnGameModeInit()
{
new hostname[64];
GetConsoleVarAsString("hostname", hostname, sizeof(hostname));
printf("Hostname: %s", hostname);
}
บันทึก
tip
When filterscripts or plugins are specified as the varname, this function only returns the name of the first specified filterscript or plugin.
tip
Type 'varlist' in the server console to display a list of available console variables and their types.
warning
Using this function with anything other than a string (integer, boolean or float) will cause your server to crash. Using it with a nonexistent console variable will also cause your server to crash.
ฟังก์ชั่นที่เกี่ยวข้องกัน
- GetConsoleVarAsInt: Retreive a server variable as an integer.
- GetConsoleVarAsBool: Retreive a server variable as a boolean.