SA-MP Forums Archive
If sentence ends in error:001 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: If sentence ends in error:001 (/showthread.php?tid=251315)



If sentence ends in error:001 - Pancake - 26.04.2011

Error message:

Код:
expected token: "-string end-", but found "-identifier-"
My code:
Код:
if((inputtext)== "Male" || (inputtext)== "Female")
{
      Register(playerid, inputtext);
}
How to fix it?

Pancake


Re: If sentence ends in error:001 - xir - 26.04.2011

pawn Код:
if(strcmp(inputtext, "Male") || strcmp(inputtext, "Female"))