team_wins[0] += 10team_wins[0] -= 10
#include <amxmodx> #include <amxmisc> #define Plugin "Round Event" #define Version "1.0" #define Author "Deviance/Doombringer" #define DEFINED_ROUNDS 14 //Rounds til' something happens new num_rounds public plugin_init() { register_plugin(Plugin, Version, Author) register_logevent("round_end", 2, "1=Round_End") register_event("TextMsg", "reset_rounds", "a", "2=#Game_will_restart_in", "2&#Game_C") } public round_end() { num_rounds++ if(num_rounds == DEFINED_ROUNDS) { // Do stuff } } public reset_rounds() { num_rounds = 0 }