09.08.2011, 20:36
Doing
actually means
but you can't compare strings like that in pawn, you must use strcmp for that.
strcmp is pretty much same as == but used for strings.
pawn Код:
if(strcmp(dini_Get(file, "IP"), IP) == 0)
pawn Код:
if(dini_Get(file, "IP") == IP)
strcmp is pretty much same as == but used for strings.