Skip to content

Commit

Permalink
Update arg help
Browse files Browse the repository at this point in the history
  • Loading branch information
JustRed23 committed May 15, 2024
1 parent 552e93a commit 07930c7
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/main/java/org/kettingpowered/launcher/Args.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,18 @@ private static void printHelp(){
System.out.println("-".repeat(KettingConstants.NAME.length() + 5));
System.out.println("Usage: java -jar your-jar-name.jar [options]");
System.out.println("Options:");
System.out.println(" -help Shows this help message");
System.out.println(" -noui Disables the fancy UI");
System.out.println(" -nologo Disables the big logo");
System.out.println(" -accepteula Accepts the EULA automatically");
System.out.println(" -dau or -daus Disables automatic server updates");
System.out.println(" -daul Disables automatic launcher updates");
System.out.println(" -installOnly Stop the launcher, after the server has been installed.");
System.out.println(" -minecraftVersion Sets the Minecraft Version of the Server. Will update the server to this version, if a Ketting version on another Minecraft Version is used.");
System.out.println(" --minecraftVersion See above, except it's depracticed. Swap to the one above, for the exact same effect.");
System.out.println(" -forgeVersion Sets the Forge Version of the Server. Will update the server to this version, if a Ketting version on another Forge or Minecraft Version is used.");
System.out.println(" -kettingVersion Sets the Ketting Version of the Server. Will update the server to this version, if a Ketting version on another Ketting or Minecraft Version is used.");
System.out.println(" -help Shows this help message");
System.out.println(" -noui Disables the fancy UI");
System.out.println(" -nologo Disables the big logo");
System.out.println(" -accepteula Accepts the EULA automatically");
System.out.println(" -dau or -daus Disables automatic server updates");
System.out.println(" -daul Disables automatic launcher updates");
System.out.println(" -createLaunchScripts Creates launch scripts to launch Ketting directly");
System.out.println(" -installOnly Stop the launcher, after the server has been installed.");
System.out.println(" -minecraftVersion Sets the Minecraft Version of the Server. Will update the server to this version, if a Ketting version on another Minecraft Version is used.");
System.out.println(" --minecraftVersion See above, except it's depracticed. Swap to the one above, for the exact same effect.");
System.out.println(" -forgeVersion Sets the Forge Version of the Server. Will update the server to this version, if a Ketting version on another Forge or Minecraft Version is used.");
System.out.println(" -kettingVersion Sets the Ketting Version of the Server. Will update the server to this version, if a Ketting version on another Ketting or Minecraft Version is used.");
System.out.println("Development|Unstable Options:");
System.out.println(" --launchTarget Sets the default launchTarget. Exists mostly for debug purposes for forge. We reserve the right to ignore this (e.g. if it's unsupported by the target server version )");
}
Expand Down

0 comments on commit 07930c7

Please sign in to comment.