23.06.2012, 22:56
Like I showed above, you would need to compare the input using strcmp.
So you would format a option such as buffalo.
So you would format a option such as buffalo.
pawn Код:
static buffalo[12],input[12];
format(buffalo,sizeof(buffalo),"buffalo");
if(strcmp(buffalo,input,true) == 0)
{
// action here..
}