Your working example is good on the task part but verry bad on everything else. It has slowhacking, bad client cvar understanding (cl_dlmax has nothing to do with models and you have no reason to change it !) and you're sending HUD message to everyone with useless spaces.
Still, he doesn't need to add task offsets in the IDs because he wants to remove both tasks it seems and that would do.
@m0skVi4a look at the example below and you also might want to add the "else" I'm adding here:
Code:
if(Timer[id] < get_pcvar_num(g_max))
{
Timer[id] += 1
set_task(1.0, "TimerMain", id) // this task has "id" after it, those that don't need to in order to parse the correct ID number in this function
}
else // add these too :}
StopTimer(id)
__________________