Dayz Launcher

fouc

Well-Known Member
Hi,

I'm not sure to be in the good forum part, so please just move it if necessary !
So what I would like to know is if someone already made a laucher for dayz servers ?
In fact I have 3 servers with different launch parameters so I would like to create a laucher to make it easier for my players.

I know I can make 3 different shortcut with good parameters but something more "modern" should be great.

I have a good knowledge in VB but I don't from where to begin (and don't have the time for it) :p
I can pay if necessary (or players can make donations too).

Many thanks in advance.

Best regards,
fouc
 
I tried to create my own launcher in java, but with my little knowledge it didn't really work. If you're good in any of programming language, just let player first select their arma 2 oa folder location. Then, just add launching parameters. Here's my superhacker code from unfinished java launcher:

Code:
/*
* Engineer: Ata Berdyev
* Website: www.berdyev.com
*/
package sc.launcher;
 
import java.io.*;
 
/**
* ============================
* SC Launcher for DayZ Server
*  the survival camp dot com
* powered by Berdyev Creations
* ============================
*/
public class SCLauncher {
 
    public static void main(String[] args) throws IOException {
       
        // Set launcher parameters and arma 2
        // Set Arma 2 path
        String param, path;
        path = "C:/Games/Arma 2/";
        param = " -beta=Expansion/beta;Expansion/beta/Expansion -nosplash -mod=@DayZ -connect=173.234.233.178 -port=2342";
       
    Runtime run = Runtime.getRuntime();
    // Don't know why am I using 'pp' in here, but this is how it works
    // run arma2oa.exe with parameteers listed above (must be BETA by the way)
    Process p=run.exec("C:/Games/Arma 2/arma2oa.exe" + param);
   
   
  // String command = "C:/Games/Arma 2/Expansion/beta/arma2oa.exe";
  // Runtime.getRuntime().exec("cmd /c " + command + param);
 
    }
}

Hope it helps ;)
 
Back
Top