01.06.2016, 20:04
The params, in this case, is a string. Then you have to convert String in Integer with strval.
Examples:
Search ID with isnull
Search ID with sscanf
Examples:
Search ID with isnull
Код:
if(isnull(params)) { // code to return false } else // code to return true { if(IsPlayerConected(strval(params))) { // Player Conected } }
Код:
new Target; if(sscanf(params, "i", Target)) { // code to return false } else // code to return true { if(IsPlayerConected(Target)) { // Player Conected } }