hi i want to do timer that i can change the time how to do it ?
PHP Code:
#include <amxmodx>
#include <amxmisc>
new Gtime = 10;
public plugin_init()
{
set_task(Gtime ,"HelloMSG",0,_,_,"b")
}
public HelloMSG(id)
{
server_cmd("amx_say Hi , Welcome to my server .")
Gtime = 300;
}