Code
#include <sourcemod
public OnPluginStart()
{
RegConsoleCmd("hello", hello);
RegConsoleCmd("stop", stop);
}
public Action:stop(client, args)
{
return Plugin_Stop;
}
public Action:hello(client, args)
{
CreateTimer(10.0, TimerFunc, client, TIMER_REPEAT);
}
public Action:Timer_Func(Handle:timer, any:client);
{
PrintToChat(client, "Hello");
}