19.03.2012, 22:18
Your midnight timer...Probably doesn't work.
I would do something like this instead, then kill it if you don't want it
Don't know why it's bugging though
pawn Код:
new NightTimer; //outside of everything
//inside of the function
NightTimer = SetTimer("SetNight", 5*60*1000, true); //set it to 5 minutes, and make it repeating
//Then kill it when you want to stop it
KillTimer(NightTimer);
Don't know why it's bugging though