Relase Basic Restart Script
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
Re: Relase Basic Restart Script
a form? wtf? why??
possibly the stupidest thing ive ever seen
Re: Relase Basic Restart Script
you could of put that in your main .cs were the game and auth codings are located :/
Re: Relase Basic Restart Script
people don't know how to ctrl + f the script for restart they could easily manipulate the /serverrestart command
Re: Relase Basic Restart Script
>.<!
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.
Re: Relase Basic Restart Script
Quote:
Originally Posted by
Korvacs
Or you could write a stable source that does not require this type of restart command.
agreed