Get the value of a field
GetField( fieldno )
Float:GetFieldFloat( fieldno )
Fetches the value of a field
fieldno | Which field to fetch |
The value of the field. GetField will return the value rounded to the nearest integer.
new x; new Float:f; x = GetField(4); f = GetFieldFloat(4); // x now holds the value of field 4, rounded to the nearest integer. // f holds the value as a float.