- Joined
- Aug 17, 2007
- Messages
- 73
- Reaction score
- 0
How do i fix the server restart, I want them ever hour not ever 15min PLEASE HELP!
dude,
Thetimer = new System.Timers.Timer();
Thetimer.Interval = 3000;
Thetimer.Elapsed += new ElapsedEventHandler(Thetimer_Elapsed);
Thetimer.Start();
Restart = new System.Timers.Timer();
Restart.Interval = 600000;
Restart.Elapsed += new ElapsedEventHandler(Restart_Elapsed);
Restart.Start();
I found it, but idk what one to chat the 3000
or the 600000, and how do i make it an hour
Dude Thank you, SOOOO much.
And just to make sure, i would have to change the bottom one to3,600,000
Thank you, =]