Relase Basic Restart Script

Results 1 to 6 of 6
  1. #1
    Member cobrafish is offline
    MemberRank
    May 2007 Join Date
    51Posts

    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


  2. #2
    Account Upgraded | Title Enabled! Korvacs is offline
    MemberRank
    Jan 2008 Join Date
    298Posts

    Re: Relase Basic Restart Script

    a form? wtf? why??

    possibly the stupidest thing ive ever seen

  3. #3
    Account Upgraded | Title Enabled! Ultimatum is offline
    MemberRank
    Feb 2008 Join Date
    EnglandLocation
    334Posts

    Re: Relase Basic Restart Script

    you could of put that in your main .cs were the game and auth codings are located :/
    Last edited by Ultimatum; 31-07-08 at 06:00 AM.

  4. #4
    Account Upgraded | Title Enabled! Scottdavey is offline
    MemberRank
    Jun 2006 Join Date
    Northern IrelandLocation
    541Posts

    Re: Relase Basic Restart Script

    people don't know how to ctrl + f the script for restart they could easily manipulate the /serverrestart command

  5. #5
    Account Upgraded | Title Enabled! Korvacs is offline
    MemberRank
    Jan 2008 Join Date
    298Posts

    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.

  6. #6
    Account Upgraded | Title Enabled! Ultimatum is offline
    MemberRank
    Feb 2008 Join Date
    EnglandLocation
    334Posts

    Re: Relase Basic Restart Script

    Quote Originally Posted by Korvacs View Post
    Or you could write a stable source that does not require this type of restart command.
    agreed



Advertisement