I'm not very updated. Someone will point out if there's a better way.
https://wiki.alliedmods.net/Half-Lif...ents#RoundTime
I haven't tested it as my server is not running currently.
Code:
#include <amxmodx>
public plugin_init() {
register_plugin("Test Plugin 3", "", "");
register_event("RoundTime", "eventRoundTime", "a", "1=0");
}
public eventRoundTime() {
server_print("Round time is 0:00");
}
__________________