10.12.2011, 13:21
Who are you to 'command' someone who works freely to do something? If it's that much of a problem, just revert back to 0.3c.
I don't have this problem, and I have left a Windows 0.3d (R2) server on over night, running 100 loops; all are still processing without issues.
This is the gamemode script I'm using on the Windows 0.3d Server I'm running for these tests:
I don't have this problem, and I have left a Windows 0.3d (R2) server on over night, running 100 loops; all are still processing without issues.
This is the gamemode script I'm using on the Windows 0.3d Server I'm running for these tests:
pawn Код:
#include <a_samp>
forward Timer(id);
main() { }
public OnGameModeInit()
{
for(new i; i < 100; i++)
{
SetTimerEx("Timer", 1000, true, "i", i);
}
}
public Timer(id)
{
printf("Timer: %i - Running", id);
}