GetGlobalInt (int index)
Returns the value of global int INDEX.
NOTE: GlobalInts are now considered obsolete. Consider using
global variables instead, which allow you to name
the variables.
Example:
if (GetGlobalInt(20) == 1) {
// code here
}
will execute the code only if Global Integer 20 is 1.
See Also: SetGlobalInt, Game.GlobalStrings
|