30.07.2014, 21:14
Text is a string, use strcmp to compare them.
== is for integers and floats.
or
== is for integers and floats.
pawn Код:
if (!strcmp(text[0], "1", true))
pawn Код:
if (strcmp(text[0], "1", true) == 0)