From 46958876930933ee95b27680f4e59e10ac064d38 Mon Sep 17 00:00:00 2001 From: 7man7LMYT <67489949+7man7LMYT@users.noreply.github.com> Date: Wed, 12 May 2021 20:09:49 -0700 Subject: [PATCH] Rory! --- Creating-a-Startup-Script.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Creating-a-Startup-Script.md b/Creating-a-Startup-Script.md index d819c10..f02c9b0 100644 --- a/Creating-a-Startup-Script.md +++ b/Creating-a-Startup-Script.md @@ -1,15 +1,15 @@ **In order for this to work, you MUST have Java 8 installed!** -Once you have downloaded and placed Geyser into its own folder, you will need to create a startup script; similar to how you'd run a Bukkit server. +Once you have downloaded and placed Rory into its own folder, you will need to create a startup script; similar to how you'd run a Bukkit server. ### Windows -* Create a new text file in the same location as the Geyser jar file, and call it `run.bat`. Open this with a text editor (preferably Notepad++), and insert the text below: +* Create a new text file in the same location as the Rory jar file, and call it `run.bat`. Open this with a text editor (preferably Notepad++), and insert the text below: ```batch @echo off -java -Xms1024M -jar Geyser.jar +java -Xms1024M -jar Rory.jar pause ``` -* Double-click the **run.bat**, and Geyser should start up. Geyser will generate all the needed files. +* Double-click the **run.bat**, and Rory should start up. Rory will generate all the needed files. ### macOS @@ -17,10 +17,10 @@ pause ```sh #!/bin/bash cd "$( dirname "$0" )" -java -Xms1024M -jar Geyser.jar +java -Xms1024M -jar Rory.jar ``` * Open Terminal, and type in `chmod a+x` **(Do NOT press return!)**, and drag your *run.command* file into the Terminal. -* Press return on your keyboard, and Geyser will start up. Geyser will generate all the needed files. +* Press return on your keyboard, and Rory will start up. Rory will generate all the needed files. ### Linux @@ -28,7 +28,7 @@ java -Xms1024M -jar Geyser.jar ```sh #!/bin/sh cd "$( dirname "$0" )" -java -Xms1024M -jar Geyser.jar +java -Xms1024M -jar Rory.jar ``` -* In your default terminal application, make the file executable by running `chmod +x ~(dir)/run.sh` where `dir` is the name of the folder Geyser is in, or by changing the file permissions; -* Open your default terminal application, and type `./run.sh` to run Geyser. Geyser will generate all the needed files. +* In your default terminal application, make the file executable by running `chmod +x ~(dir)/run.sh` where `dir` is the name of the folder Rory is in, or by changing the file permissions; +* Open your default terminal application, and type `./run.sh` to run Rory. Rory will generate all the needed files.