#include <amxmodx> #define PLUGIN ""#define VERSION ""#define AUTHOR "" new g_roundtime, pointnum;public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) pointnum = get_cvar_pointer("mp_roundtime");}public something() { g_roundtime = get_pcvar_num(pointnum); if(g_roundtime == 0) { server_cmd("sv_restart 3") } }