creating timers guide...

Junior Spellweaver
Joined
Apr 19, 2008
Messages
170
Reaction score
0
ok this would b helpful to a lot of people including myself im planning on making it so u can only use the guildwar teleporter every so often (kind of like a guild war jail system without the jail) but alls i have on timers is this (lotf source) and this is just for restart timer

Thetimer = new System.Timers.Timer();
Thetimer.Interval = 120000;
Thetimer.Elapsed += new ElapsedEventHandler(Thetimer_Elapsed);
Thetimer.Start();


Restart = new System.Timers.Timer();
Restart.Interval = 1800000;
Restart.Elapsed += new ElapsedEventHandler(Restart_Elapsed);
Restart.Start();
 
Look whos talking. xD
Weren't you the one who was asking tens of questions in ragezone at first and making a topic for each one? lol
 
Back