22.03.2013, 15:48
EXAMPLE:
pawn Код:
new Time[4]; // in this case 4 times
/// any CallBack
Time[0] = SetTimer("FunctionA", 1000, true);
Time[1] = SetTimer("FunctionB", 1000, true);
Time[2] = SetTimer("FunctionC", 1000, true);
Time[3] = SetTimer("FunctionD", 1000, true);
/// any CallBack
for( new i; i < Time; i++)
{
KillTimer( Time[i] );
}