Thread: Matrix 3 Run Error

Results 1 to 6 of 6
  1. #1 Matrix 3 Run Error 
    Registered Member
    Join Date
    Mar 2013
    Posts
    191
    Thanks given
    13
    Thanks received
    12
    Rep Power
    26
    Whenever I run GameLauncher.java I get this.
    Code:
    USE: worldid(int) debug(boolean) hosted(boolean) pvpworld(boolean) hammershield_enabled(boolean)
    LoginLauncher.java I get this...
    Code:
    USE: debug(boolean) hosted(boolean)
    Reply With Quote  
     

  2. #2  
    Registered Member Ownster's Avatar
    Join Date
    Feb 2011
    Age
    26
    Posts
    183
    Thanks given
    533
    Thanks received
    56
    Rep Power
    0
    Quote Originally Posted by Nika View Post
    Whenever I run GameLauncher.java I get this.
    Code:
    USE: worldid(int) debug(boolean) hosted(boolean) pvpworld(boolean) hammershield_enabled(boolean)
    LoginLauncher.java I get this...
    Code:
    USE: debug(boolean) hosted(boolean)
    add the arguments it asks for or just remove the check for them.
    Attached image
    Attached image
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Mar 2013
    Posts
    191
    Thanks given
    13
    Thanks received
    12
    Rep Power
    26
    Comment them out? This is the code for it.
    Code:
    	public static void main(String[] args) throws Exception {
    		if (args.length < 5) {
    			System.out.println("USE: worldid(int) debug(boolean) hosted(boolean) pvpworld(boolean) hammershield_enabled(boolean)");
    			return;
    		}
    		Settings.WORLD_ID = Integer.parseInt(args[0]);
    		Settings.DEBUG = Boolean.parseBoolean(args[1]);
    		Settings.HOSTED = Boolean.parseBoolean(args[2]);
    		Settings.SPAWN_WORLD = Boolean.parseBoolean(args[3]);
    		Settings.CX_HAMMERSHIELD_ENABLED = Boolean.parseBoolean(args[4]);
    		Settings.init();
    Reply With Quote  
     

  4. #4  
    Registered Member Ownster's Avatar
    Join Date
    Feb 2011
    Age
    26
    Posts
    183
    Thanks given
    533
    Thanks received
    56
    Rep Power
    0
    Code:
     
    public static void main(String[] args) throws Exception {
       /*if (args.length < 5) {
        System.out.println("USE: worldid(int) debug(boolean) hosted(boolean) pvpworld(boolean) hammershield_enabled(boolean)");
        return;
        }
        Settings.WORLD_ID = Integer.parseInt(args[0]);
        Settings.DEBUG = Boolean.parseBoolean(args[1]);
        Settings.HOSTED = Boolean.parseBoolean(args[2]);
        Settings.SPAWN_WORLD = Boolean.parseBoolean(args[3]);
        Settings.CX_HAMMERSHIELD_ENABLED = Boolean.parseBoolean(args[4]);*/
        Settings.init();
    Like that
    Attached image
    Attached image
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Mar 2013
    Posts
    191
    Thanks given
    13
    Thanks received
    12
    Rep Power
    26
    Quote Originally Posted by Ownster View Post
    Code:
     
    public static void main(String[] args) throws Exception {
       /*if (args.length < 5) {
        System.out.println("USE: worldid(int) debug(boolean) hosted(boolean) pvpworld(boolean) hammershield_enabled(boolean)");
        return;
        }
        Settings.WORLD_ID = Integer.parseInt(args[0]);
        Settings.DEBUG = Boolean.parseBoolean(args[1]);
        Settings.HOSTED = Boolean.parseBoolean(args[2]);
        Settings.SPAWN_WORLD = Boolean.parseBoolean(args[3]);
        Settings.CX_HAMMERSHIELD_ENABLED = Boolean.parseBoolean(args[4]);*/
        Settings.init();
    Like that
    Then I get this error..

    Code:
    [Launcher] Initing File System...
    ERROR! THREAD NAME: main
    java.io.FileNotFoundException: Bad location
    	at minifs.MiniFS.open(MiniFS.java:150)
    	at com.rs.utils.SerializableFilesManager.init(SerializableFilesManager.java:36)
    	at com.rs.GameLauncher.main(GameLauncher.java:84)
    Exception in thread "main" java.lang.Error: Failed to load file system.
    	at com.rs.utils.SerializableFilesManager.init(SerializableFilesManager.java:47)
    	at com.rs.GameLauncher.main(GameLauncher.java:84)
    Reply With Quote  
     

  6. #6  
    Registered Member Atrium's Avatar
    Join Date
    Apr 2013
    Posts
    295
    Thanks given
    43
    Thanks received
    41
    Rep Power
    0
    removing the arguments that loads the game would just continue throwing errors, lol

    if you're using Eclipse (i certainly hope you are, if not, download it) open the file in the workspace, click the 'Run' menu > 'Run Configurations' > 'Arguments' > and then add the arguments in there. World ID will probably be 1, debug is unnecessary unless you know what it does, do you want the server hosted or local-host, is it a pvp world, and is hammershield enabled. so for example, the arguments should look like: 1 false false false false. add those arguments a click apply and then run, then do the same thing for the login launcher.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Matrix 3 - Run error
    By Wizard. in forum Help
    Replies: 8
    Last Post: 03-17-2016, 12:06 AM
  2. Need help with Matrix 718 run error!
    By _Harry in forum Help
    Replies: 2
    Last Post: 12-02-2013, 08:53 AM
  3. 718 Matrix Source Run Error
    By Deathowner00 in forum Help
    Replies: 21
    Last Post: 11-30-2013, 03:55 PM
  4. matrix realese run? (error)
    By alon in forum Help
    Replies: 8
    Last Post: 09-23-2013, 09:35 PM
  5. [MATRIX 718] need help fixing run errors
    By 90 tank dds in forum Help
    Replies: 6
    Last Post: 08-02-2012, 11:03 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •