29.11.2013, 22:42
I don't know why you're hashing anything in this situation..
First Code:
Second Code:
First Code:
pawn Код:
new c = 0;
for(new n = 0; n < 20; n++)
{
if(strcmp(member[n], "Niko", false) == 0)
{
//the rest of my code
return 1;
}
else
{
c++;
}
if(c == 20) return SCM(playerid... //the rest of my code
}
pawn Код:
new org[64], c = 0;
new ime[MAX_PLAYER_NAME];
GetPlayerName(playerid, ime, sizeof(ime));
format(org,64,"Org_%d.ini",PlayerInfo[playerid][pOrg]);
INI_ParseFile(org, "LoadMembers_%s", .bExtra = true, .extra = playerid);
for(new n = 0; n < 20; n++)
{
if(strcmp(member[n], ime, false) != 0)
{
c++;
}
if(c == 20)
{
//the rest of my code
}
}