Is there any command that can repeat script every 10min
Like i need to repeat this script every 10mins:
Code:
}
public round_start()
{
new ent = FM_NULLENT
static string_class[] = "classname"
while ((ent = engfunc(EngFunc_FindEntityByString, ent, string_class, item_class_name)))
{
set_pev(ent, pev_effects, 0)
set_pev(ent, pev_solid, SOLID_BBOX)
}
}