13.12.2010, 09:41
Quote:
Simple, strcmp dosent work like that, you are checking if the password entered is NOT the correct one
Change Код:
if(!strcmp(inputtext, NEWSGATE_PASSWORD, true)) Код:
if(strcmp(inputtext, NEWSGATE_PASSWORD, true)) |
Quote:
Apparently someone didnt see my post, either way changing the way i said would have the same effect
- [FF]Cody_Beer |
pawn Код:
if(!strcmp(NEWSGATE_PASSWORD, inputtext, true))