Please help to finish this script. I need to unblind all players on start of every round.
Code:
#include <amxmodx>
#include <amxmisc>
public new_round(id) {
new players[32], inum
get_players(players, inum)
for (new i = 0; i <= inum; ++i) {
...
}
return PLUGIN_HANDLED
}
public plugin_init() {
register_plugin("blah","1.0","OrakuL")
register_event("ResetHUD", "new_round", "b")
return PLUGIN_CONTINUE
}