How to allocate more RAM for Minecraft Servers

Create a .txt file. Input java -Xms#$ -Xmx#$ -jar &" Key: # = Amount of --> $ = G for gigabyte, M for megabyte, and B for byte; & for EXACT name and file extension of server jar/exe. Rename the extension from .txt to .bat Run the .bat, this should activate the server. If running an exe, add gui after .exe in the .bat code. This will launch the Cmd Line application and the server GUI. Both will work the same. Syntax: -Xmx is the maximum of RAM which the server can use. -Xms is the allocated RAM at the beginning. -Xms must not be greater than -Xmx! ...
Read More

Minecraft BungeeCord configuration guide

Default config.yml player_limit: -1 ip_forward: false permissions: default: - bungeecord.command.server - bungeecord.command.list admin: - bungeecord.command.alert - bungeecord.command.end - bungeecord.command.ip - bungeecord.command.reload timeout: 30000 log_commands: false online_mode: true servers: lobby: motd: '&1Just another BungeeCord - Forced Host' address: localhost:25565 restricted: false listeners: - query_port: 25577 motd: '&1Another Bungee server' priorities: - lobby bind_local_address: true tab_list: GLOBAL_PING query_enabled: false host: 0.0.0.0:25577 forced_hosts: pvp.md-5.net: pvp max_players: 1 tab_size: 60 ping_passthrough: false force_default_server: false proxy_protocol: false disabled_commands: - disabledcommandhere network_compression_threshold: 256 groups: md_5: - admin connection_throttle: 4000 stats: f2876aa6-74d2-468c-90ee-1377111f1c9f groups Default: Code (Text): md_5: - admin Type: Section Description: Here, you can assign players to a permission group that you created earlier in the configuration. The format is groups, followed by each player, followed by each group he/she is in. By default "md_5" is given "admin" group, which gives permissions as defined by permissions section. Every player has default. Only add players who need more than the default permissions. disabled_commands Default: disabledcommandhere Type: List Description: Use this to disable commands on your BungeeCord instance. player_limit Default: -1 Type: Integer Description: Global player limit for your BungeeCord instance. If set to 0 or below, this will allow an unlimited amount of users to join. log_commands Default: false Type: Boolean Description: When a player writes a bungeecord command, that command is also included in the bungeecord console. stats Default: (randomly generated string) Type: String Description: Used for stats purposes, please do not remove or alter the...
Read More

Minecraft – BungeeCord Commands

If the typical user is listed as a Server Administrator, this indicates that the command is for administrating a server and is usually run by administrators of the proxy. If the typical user is listed as a Player, this indicates that the command is used by both players and server administrators. Guide: <required argument> - this argument is required for executing the command. [optional argument] - this argument is not required for executing the command. Commands: /alert <message> Permission Node: bungeecord.command.alert Issues an alert to all users connected to BungeeCord. Colour codes may be used with &. The special code &h will hide all default formatting, allowing for completely custom messages. Defaulted - admin Typical user - Server Administrator This is most useful for announcements that need to be shown across every server. /alertraw <json> Permission Node: bungeecord.command.alert Issues an alert to all users connected to BungeeCord, but allows the use of Minecraft JSON formatting. Defaulted - admin Typical user - Server Administrator /bungee Shows what version of BungeeCord is currently being run. Defaulted - all Typical user - Player /end Permission Node: bungeecord.command.end Shuts down the BungeeCord instance,...
Read More