24.06.2010, 14:04
So, do you want to check if there is a space in the player's name?
If yes, then you can use strfind:
That should do the trick.
If yes, then you can use strfind:
pawn Код:
GiveNameSpace(name[])
{
if(strfind(name, ' ') == -1)
{
return 0;
}
return 1;
}