#include <amxmodx>#include <amxmisc>new Float:Gtime = 10;new GTMSEC = 1;public plugin_init(){ set_task(Gtime ,"HelloMSG")}public HelloMSG(){ server_cmd("amx_say Hi , Welcome to my server .") if( ++GTMSEC > 5 ) Gtime = 300.0; set_task(Gtime ,"HelloMSG")}