27.10.2008, 12:41
Quote:
Originally Posted by Y_Leѕѕ
OnServerFrame
This little snippet will cause a callback to be called every server frame. It's operation is fairly obvious as long as you know that sleep(0) does not sleep for exactly 0ms but just >= 0, i.e. it will be called at the next frame greater than 0ms later, not instantly. For this reason the example below may have larger than 0ms gaps (0 is obviously impossible).This must be put in all your gamemodes if you want it to work consistently, or you can just use th next version of the YSI plugin which will likely include this: pawn Код:
pawn Код:
|
Run time error 3: Stack/heap collision (insufficient stack size)
EDIT:
What about this?
pawn Код:
main()
{
SetTimer( "OnServerFrame", 1, 1 );
}
Ковалски