29.08.2013, 18:14
Quote:
|
Thanks to both! But I'm having problems using YSI, I've already posted something about this and there were no replies for resolution. I already have YSI and included it onto the game-mode without errors nor warnings.
Each time I try to use timers(y_timers), it doesn't work at all. First, I had this: pawn Код:
pawn Код:
|
pawn Код:
#include <YSI\y_timers>
task RepeatingTimer[1000]()
{
printf("Called every 1 seconds.");
}
timer DelayedTimer[500](playerid)
{
printf("May be called after 0.5 seconds");
}
main()
{
defer DelayedTimer(42);
}


