top of page

Information

Our Server is showing a small community of gamers who love to play Minecaft. With that we also have alot of very nice people who support this server.  This makes us also enjoy the creations we make on here, enjoy!

We appreciate every donations made to us to OutrageousCraftTeam@gmail.com. If you donate you will be rewarded with the
Respected rank!

​

This server is paid for, i don't have pay to play content that's why donations is appreciated.







Rules listed under here:

[1] Be courteous and respectful to others.
[2] Be ethical and use common sense.

​

Bannable actions:
[1] Don't use any tools to give you an unfair advantage, hacks & cheats.
[2] Continuously breaking rules.

​

Kickable actions:
[1] Don't ask about ranks, op or gamemode.
[2] Don't spam chat.

​

Mutable actions:
[1] Don't paste or write ips, ports and/or names that can be taken as advertising if it's not related to the server.
[2] Building or writing anything offensive.

​

Link to our resource pack is found here

​

Having lag on our server? Follow these steps

Quick Summery

1. Open the launcher.
2. Click Launch Options.
3. Enable Advanced Settings.
4. Select a profile.
5. Enable ″JVM arguments.″
6. Edit the amount of RAM.
7. Click SAVE.

Did this summary help you?YesNo

Steps

Method 1

Using Launcher Version 2.0.X

  1. 1

    Check your computer's available RAM. The amount of available RAM will dictate how much memory you can allocate to Minecraft. To check RAM:

    • Windows - Open Start, click the Settings gear, click System, click About, and look at the number next to "Installed RAM".

    • Mac - Open the Apple menu, click About This Mac, and look at the number to the right of the "Memory" heading.

  2. 2

    Update your Java program. Go to Java's website at https://www.java.com/en/download/ and click the "Download" button below the latest version of Java. This will ensure that your Java version is up-to-date and ready for RAM allocation.

    • If you're on Windows, make sure you download the correct bit version for your operating system.

  3. 3

    Open the Minecraft launcher. Double-click the Minecraft icon to do so.

    • If the launcher window has "1.6..." in the bottom-left corner (or at the top of the window), use the launcher version 1.6.X method instead.

  4. 4

    Click the Launch options tab. It's at the top of the launcher.

  5. 5

    Make sure the Advanced settings switch is on. This switch is in the top-right side of the Launch Options page. If the switch isn't green, click it before continuing.

  6. 6

    Click the profile you want to change. If you only see one option on this page, just click that option.

  7. 7

    Turn on the JVM arguments switch. Click the switch to the left of "JVM arguments" to enable this feature.

  8. 8

    Edit the amount of RAM that Minecraft can use. You'll see a line of text in the "JVM arguments" text field, the first section of which says -Xm1G; change the "1" to the number of gigabytes of RAM you want to use for Minecraft.

    • For example, you would change this text to say "-Xm4G" to use four gigabytes of RAM with Minecraft.

  9. 9

    Click SAVE. It's at the bottom of the window. Minecraft will now use your selected amount of RAM for the specified profile.

Method 2

Using Launcher Version 1.6.X

  1. 1

    Check your computer's available RAM. The amount of available RAM will dictate how much memory you can allocate to Minecraft. To check RAM:

    • Windows - Open Start, click the Settings gear, click System, click About, and look at the number next to "Installed RAM".

    • Mac - Open the Apple menu, click About This Mac, and look at the number to the right of the "Memory" heading.

  2. 2

    Update your Java program. Go to Java's website at https://www.java.com/en/download/ and click the "Download" button below the latest version of Java. This will ensure that your Java version is up-to-date and ready for RAM allocation.

    • If you're on Windows, make sure you download the correct bit version for your operating system.

  3. 3

    Start the Minecraft launcher. In 1.6.X and newer, you can allocate more RAM directly from the Minecraft launcher. If you are using an older version, see the next section.

    • If the launcher window has "2.0..." in the bottom-left corner, use the launcher version 2.0.X method instead.

  4. 4

    Select your profile. Click Edit Profile and select a profile from the list.

  5. 5

    Enable JVM Arguments. In the "Java Settings (Advanced)" section, check the "JVM Arguments" box. This will you to enter commands to modify the Minecraft program.

  6. 6

    Allocate more RAM. By default, Minecraft will allocate 1 GB of RAM for itself. You can increase this by typing -Xmx#G. Replace # with the number of gigabytes you want to allocate. For example, if you wanted to allocate 18 GB, you would type -Xmx18G.

  7. 7

    Save your profile. Click Save Profile to save your settings. Your specified amount of RAM will now be applied to your selected profile.

Method 3

Using a Minecraft Server

  1. 1

    Check your computer's available RAM. The amount of available RAM will dictate how much memory you can allocate to Minecraft. To check RAM:

    • Windows - Open Start, click the Settings gear, click System, click About, and look at the number next to "Installed RAM".

    • Mac - Open the Apple menu, click About This Mac, and look at the number to the right of the "Memory" heading.

  2. 2

    Update your Java program. Go to Java's website at https://www.java.com/en/download/ and click the "Download" button below the latest version of Java. This will ensure that your Java version is up-to-date and ready for RAM allocation.

    • If you're on Windows, make sure you download the correct bit version for your operating system. You can only allocate 1 GB of RAM on a 32-bit computer.

  3. 3

    Open your Minecraft server directory. This is the folder that contains the Minecraft_server.exe file that you launch to start your Minecraft server.

    • The easiest way to find this is by searching for the "Minecraft_server" file and then opening its file location.

  4. 4

    Create a text document in your server folder. Click either Home (Windows) or File (Mac), then either click New item (Windows) or select New (Mac) and click Text Document. This will create a new text document in the same location as the minecraft_server.exe file.

  5. 5

    Enter in the code to allocate more RAM. Enter the following code into your text document depending on the operating system you are using:
    Windows

     java -Xmx####M -Xms####M -exe Minecraft_Server.exe -o true
     PAUSE


    OS X

     #!/bin/bash
     cd "$( dirname "$0" )"
     java -Xms####M -Xmx####M -exe Minecraft_Server.exe -o true


    Linux

     #!/bin/sh
     BINDIR=$(dirname "$(readlink -fn "$0")")
     cd "$BINDIR"
     java -Xms####M -Xmx####M -exe Minecraft_Server.exe -o true

     

    • Change #### to the value in megabytes that you want to allocate. To allocate 2 GB, type 2048. To allocate 3 GB, type 3072. To allocate 4 GB, type 4096. To allocate 5 GB, type 5120.

  6. 6

    Save the file. If you are using windows, save the file as a ".bat" file. Click File and select Save As.... Change the file extension from ".txt" to ".bat". If you are using OS X, save the file as a ".command" file. If you are running Linux, save the file as a ".sh" file.

    • You may first have to enable file extensions on Windows to view them.

  7. 7

    Run the new file to start Minecraft. The file you create will be the new launcher for your Minecraft server. Launching with the new file (.bat for Windows, .command for Mac, or .sh for Linux) will allocate the new amount of RAM to the server.​













bottom of page