Strtok or so
#1

Well I like to make that admins in my server don't can make /ban [id] dddddddddddddddddddddd so that the max. letter WITHOUT any space not more than 10 is.
Because I have a Banlist in my website and the big letters without any space kills my table. a big letter with spaces it tabulates.
Reply
#2

bump
Reply
#3

You would need to put this in your code and adjust it accordingly

pawn Код:
if(strlen(string) > 10 || strfind(string," ") != -1)
{
  //invalid
  return 1;
}
Reply
#4

So is working at me:

pawn Код:
if(strlen(result) > 10 && strfind(result," ") == -1)
{
  //Invalid
  return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)