Relase Basic Restart Script

Newbie Spellweaver
Joined
May 24, 2007
Messages
47
Reaction score
0
namespace RESTART
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();

Timer t = new Timer();

t.Tick += new EventHandler(t_Tick);
t.Interval = 1800000;
t.Start();
}

void t_Tick(object sender, EventArgs e)
{
Application.Restart();
}
}
}


This gives you the timer, rest have u to make self!

VERY EASY
 
people don't know how to ctrl + f the script for restart they could easily manipulate the /serverrestart command
 
>.<!

Or you could just write one to run on a seperate thread so that it doesnt stop working when something else fucks up.

Or you could write a stable source that does not require this type of restart command.
 
Back