Timer error
#2

Code:
mostkills = INVALID_PLAYER_ID
if(MgKills[i] > MgKills[mostkills])
If you still didnt understand the problem just repost I'll explain...

Here you go, I guess its a mistake
Code:
forward miniguntimer();
public miniguntimer()
{
    new string[128], mostkills = INVALID_PLAYER_ID;
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i) && InEvent[i] == true)
        {
            if(mostkills == INVALID_PLAYER_ID) mostkills = i;
            if(MgKills[i] > MgKills[mostkills]) mostkills = i;
        }
    }
    format(string, sizeof(string), "The player with Most Kills is %s with %d kills.", GetName(mostkills), MgKills[mostkills]);
    SendClientMessageToAll(MGDM, string);
    return 1;
}
Reply


Messages In This Thread
Timer error - by _GHT_MarK445 - 29.06.2020, 16:46
Re: Timer error - by GameOvr - 29.06.2020, 18:28

Forum Jump:


Users browsing this thread: 1 Guest(s)