27.03.2013, 01:47
how to check for numbers
need some help here is the commandКод:
//in some command
new id,input[128],choice[128];
if(sscanf(params,"ss",input,choice)
{
return SendClientMessge(playerid, RED, "SYNTAX /setplayerlabelstate [playerid/all] [yes/no]");
}
if(strcmp(input,"all",true,64)==0)
{
}
else
{
id = strval(input);
}
how do I do this ?


