27.05.2009, 14:33
Ah that's great. Thanks a lot for the help. About this bit:
I'm not 100% sure what you mean here...something like this?
And then use the TickCount variable in my commands?
Quote:
|
increment a global variable in a repeating timer of 1 second and use this variable instead. |
Код:
new TickCount;
forward RaiseCount();
public OnGameModeInIt()
{
SetTimer("RaiseCount", 1000, 1);
}
public RaiseCount()
{
TickCount++;
}

