Skip to main content

GetServerVarAsInt

warning

This function, as of 0.3.7 R2, is deprecated. Please see GetConsoleVarAsInt

คำอธิบาย

Get the integer value of a server variable.

NameDescription
const varname[]The name of the integer variable to get the value of.

ส่งคืน

The value of the specified server variable. 0 if the specified server variable is not an integer or doesn't exist.

ตัวอย่าง

new serverPort = GetServerVarAsInt("port");
printf("Server Port: %i", serverPort);

บันทึก

tip

Type 'varlist' in the server console to display a list of available server variables and their types.

ฟังก์ชั่นที่เกี่ยวข้องกัน

  • GetServerVarAsString: Retreive a server variable as a string.
  • GetServerVarAsBool: Retreive a server variable as a boolean.