Upload magma

This commit is contained in:
Diamond Creeper 2024-03-04 21:16:02 +13:00
commit dfa9ee0b24
5008 changed files with 653442 additions and 0 deletions

16
server_files/args.txt Normal file
View file

@ -0,0 +1,16 @@
-p @MODULE_PATH@
--add-modules @MODULES@
--add-opens java.base/java.util.jar=cpw.mods.securejarhandler
--add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler
--add-exports java.base/sun.security.util=cpw.mods.securejarhandler
--add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming
-Djava.net.preferIPv6Addresses=system
-DignoreList=@IGNORE_LIST@
-DlibraryDirectory=libraries
-DlegacyClassPath=@CLASS_PATH@
cpw.mods.bootstraplauncher.BootstrapLauncher
--launchTarget @TASK@
--fml.forgeVersion @FORGE_VERSION@
--fml.mcVersion @MC_VERSION@
--fml.forgeGroup @FORGE_GROUP@
--fml.mcpVersion @MCP_VERSION@

11
server_files/index.html Normal file
View file

@ -0,0 +1,11 @@
<html>
<head><title>Index of /mirror/src/Magma-1-20-x/server_files/</title></head>
<body>
<h1>Index of /mirror/src/Magma-1-20-x/server_files/</h1><hr><pre><a href="../">../</a>
<a href="args.txt">args.txt</a> 07-Oct-2023 14:12 611
<a href="run.bat">run.bat</a> 07-Oct-2023 14:12 347
<a href="run.sh">run.sh</a> 07-Oct-2023 14:12 339
<a href="user_jvm_args.txt">user_jvm_args.txt</a> 07-Oct-2023 14:12 339
</pre><hr><script defer src="https://static.cloudflareinsights.com/beacon.min.js/v84a3a4012de94ce1a686ba8c167c359c1696973893317" integrity="sha512-euoFGowhlaLqXsPWQ48qSkBSCFs3DPRyiwVu3FjR96cMPx+Fr+gpWRhIafcHwqwCqWS42RZhIudOvEI+Ckf6MA==" nonce="f50e5824e544d6c728278e34015e60dc" data-cf-beacon='{"rayId":"85f014fa1e9950c2","version":"2024.2.4","r":1,"token":"583109dda43e47a593fd006526a81120","b":1}' crossorigin="anonymous"></script>
</body>
</html>

7
server_files/run.bat Normal file
View file

@ -0,0 +1,7 @@
@echo off
REM Forge requires a configured set of both JVM and program arguments.
REM Add custom JVM arguments to the user_jvm_args.txt
REM Add custom program arguments {such as nogui} to this file in the next line before the %* or
REM pass them to this script directly
java @user_jvm_args.txt @libraries/@MAVEN_PATH@/win_args.txt %*
pause

6
server_files/run.sh Normal file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env sh
# Forge requires a configured set of both JVM and program arguments.
# Add custom JVM arguments to the user_jvm_args.txt
# Add custom program arguments {such as nogui} to this file in the next line before the "$@" or
# pass them to this script directly
java @user_jvm_args.txt @libraries/@MAVEN_PATH@/unix_args.txt "$@"

View file

@ -0,0 +1,9 @@
# Xmx and Xms set the maximum and minimum RAM usage, respectively.
# They can take any number, followed by an M or a G.
# M means Megabyte, G means Gigabyte.
# For example, to set the maximum to 3GB: -Xmx3G
# To set the minimum to 2.5GB: -Xms2500M
# A good default for a modded server is 4GB.
# Uncomment the next line to set it.
# -Xmx4G