Advertisement
Guest User

Untitled

a guest
Sep 4th, 2024
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. @echo off
  2. REM Forge requires a configured set of both JVM and program arguments.
  3. REM Add custom JVM arguments to the user_jvm_args.txt
  4. REM Add custom program arguments {such as nogui} to this file in the next line before the %* or
  5. REM pass them to this script directly
  6. cls
  7. :StartServer
  8.  
  9. java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.20.1-47.3.7/win_args.txt -Xmx16G
  10.  
  11. goto StartServer %*
  12.  
  13. pause
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement