Quote:
Originally Posted by LemoNSK
PHP Code:
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
register_logevent("round_end", 2, "1=Round_End");
}
public round_end(id) {
new players[MAX_PLAYERS];
static numT, numCT;
get_players(players, numT, "ceh","TERRORIST");
get_players(players, numCT, "ceh","CT");
}
This is what I have.. Can't move from here.. So I have actually how many players there are on the server in each team, I thought of making some loop through them so I could find the players with most kills. But it makes no sense to me, there must be some command.
|
Well, that's the least you can do. Also don't use static on such things.
__________________