[Help] Is this causing Infinite Loop?
#1

Hello i have this 2 things in my script, i think they causing infinite loop so server freezes? Can someone check it

First Code
Код:
new c = 0;
for(new n = 0; n < 20; n++)
{
if(udb_hash(member[n]) == udb_hash("Niko"))
{
//the rest of my code
return 1;
}
else if(udb_hash(member[n]) != udb_hash("Niko"))
{
c++;
if(c == 20) return SCM(playerid... //the rest of my code
}
}
Second Code

Код:
new org[64]; new 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(udb_hash(member[n]) != udb_hash(ime))
{
c++;
}
if(c == 20)
{
//the rest of my code
}
}
Reply
#2

How did you defined 'member' in your first code?
Reply
#3

Код:
new member[20][MAX_PLAYER_NAME];
at top of script
Reply
#4

Anyone? Advice? Help?
Reply
#5

I don't know why you're hashing anything in this situation..
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
}
Second 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
    }
}
Reply
#6

Thanks, i will try to use that.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)