29.06.2020, 18:28
Code:
mostkills = INVALID_PLAYER_ID if(MgKills[i] > MgKills[mostkills])
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; }