I need a function
(in the second round and after each round)
(no act in the first round...)
For example:
HTML Code:
#include <amxmodx>
#include <cstrike>
#define PLUGIN "xxx"
#define VERSION "xxx"
#define AUTHOR "xxx"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
???????????????
}
public event_x(id)
{
if (get_user_flags(id) & ADMIN_MENU)
...
}
__________________