help - 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)
+--- Thread: help (
/showthread.php?tid=634872)
help -
itachi - 27.05.2017
Код:
error 027: invalid character constant
line :
Код:
if(cmd[1] == '//' && InfoHrace[playerid][ADMIN_LEVEL] > 0)
Re: help -
Dayrion - 27.05.2017
Quote:
Originally Posted by itachi
Код:
error 027: invalid character constant
line :
Код:
if(cmd[1] == '//' && InfoHrace[playerid][ADMIN_LEVEL] > 0)
|
A character can be only an one character. if(cmd[1] == '/'
Use strcmp to compare string instead of character.