Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Batta

Members
  • Joined

  • Last visited

  1. print('Download Mods') if not os.path.isdir('mods'): os.makedirs('mods') for mod in mods[1:]: projectID = mod[0] fileID = mod[1] download_url = f'https://addons-ecs.forgesvc.net/api/v2/addon/{projectID}/file/{fileID}/download-url' request1 = Request(download_url) response1 = urlopen(request1) file_url = response1.read().decode('utf-8') request2 = Request(urllib.parse.quote(file_url, safe="/:@?=&")) response2 = urlopen(request2) print('Downloading mod %s...' % file_url[file_url.rfind('/') + 1:]) with open('mods' + os.path.sep + file_url[file_url.rfind('/') + 1:], mode='wb') as target: target.write(response2.read()) if __name__ == '__main__': downloadMods()
  2. def downloadMods(): mods = [] with open('server.txt') as file: for entry in file.read().split('\n'): if not entry.strip() == '': mods.append([x.strip() for x in entry.split('/')])
  3. because the folder mods is empty and in the "setup.server.py" i opened with visual studio and those number are linked with mods, in the code in that part say "start downloading mods" and the txt name
  4. this is the txt: 1.16.5/36.2.0 251079/3086486 294815/3377560 248787/3395800 419699/3385660 436964/3196072 225643/3386883 232502/3228528 395617/3342952 274259/3339353 348521/3311352 399558/3285196 309927/3343065 232131/3330403 314904/3038811 314906/3248884 404465/3237039 289412/3249257 404468/3237174 386134/3269868 230976/3052146 299540/3172796 288885/3245271 271009/3330716 238551/3280656 355542/3087381 240633/3077903 228756/3105315 314911/3164598 309674/3376819 444941/3300267 238222/3157864 238222/3327383 437558/3172880 240630/3166519 238086/3397256 412525/3329216 361276/3392297 289799/3294735 460925/3251921 69118/3215383 400058/3395875 306770/3374063 283644/3331459 285612/3211323 416294/3354586 446691/3353123 245211/3319255 414640/3223367
  5. https://imgur.com/a/b7I2LlO this appers, it doesn't load the mods (download) but this version opens, but there's a txt with numbres which i belive x numer is a mod and then it downloads, but now doesn't download anything
  6. ok i try the frist way, but what you mean update forge? curse forge the app? or the .jar server?
  7. REM If no Java is installed this line will catch it simply java -d64 -version >nul 2>&1 || GOTO JAVAERROR REM Look for Java 1.8 specifically java -d64 -version 2>&1 | %MC_SYS32%\FIND.EXE "1.8" ECHO. IF %ERRORLEVEL% EQU 0 ( ECHO INFO: Found 64-bit Java 1.8 GOTO CHECK ) ELSE ( GOTO JAVAERROR ) how i change the path? the one i want is C:\Program Files (x86)\Java\jre1.8.0_333\bin\java.exe
  8. now this [03Jun2022 17:15:18.745] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 36.2.0, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge] [03Jun2022 17:15:18.749] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 8.0.9+86+master.3cf110c starting: java version 1.8.0_333 by Oracle Corporation [03Jun2022 17:15:19.484] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust [03Jun2022 17:15:19.537] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.2 Source=file:/C:/Users/gianl/Downloads/Server.Garden.of.Glass.-.Questbook.Edition-v4.3.4/libraries/org/spongepowered/mixin/0.8.2/mixin-0.8.2.jar Service=ModLauncher Env=SERVER [03Jun2022 17:15:19.588] [main/WARN] [net.minecraftforge.fml.loading.FMLConfig/CORE]: Configuration file C:\Users\gianl\Downloads\Server.Garden.of.Glass.-.Questbook.Edition-v4.3.4\config\fml.toml is not correct. Correcting [03Jun2022 17:15:19.596] [main/WARN] [net.minecraftforge.fml.loading.FMLConfig/CORE]: Incorrect key [defaultConfigPath] was corrected from null to defaultconfigs [03Jun2022 17:15:20.583] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmlserver' with arguments [--gameDir, .] [03Jun2022 17:15:20.652] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: java.lang.NoSuchMethodError: sun.security.util.ManifestEntryVerifier.<init>(Ljava/util/jar/Manifest;)V [03Jun2022 17:15:20.652] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.SecureJarHandler.createCodeSource(SecureJarHandler.java:66) [03Jun2022 17:15:20.652] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:275) [03Jun2022 17:15:20.653] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:136) [03Jun2022 17:15:20.653] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:98) [03Jun2022 17:15:20.653] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at java.lang.ClassLoader.loadClass(Unknown Source) [03Jun2022 17:15:20.653] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at java.lang.Class.forName0(Native Method) [03Jun2022 17:15:20.653] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at java.lang.Class.forName(Unknown Source) [03Jun2022 17:15:20.654] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraftforge.fml.loading.FMLServerLaunchProvider.lambda$launchService$0(FMLServerLaunchProvider.java:51) [03Jun2022 17:15:20.654] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [03Jun2022 17:15:20.654] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [03Jun2022 17:15:20.654] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [03Jun2022 17:15:20.654] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [03Jun2022 17:15:20.655] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [03Jun2022 17:15:20.655] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraftforge.server.ServerMain$Runner.runLauncher(ServerMain.java:63) [03Jun2022 17:15:20.655] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraftforge.server.ServerMain$Runner.access$100(ServerMain.java:60) [03Jun2022 17:15:20.655] [main/INFO] [STDERR/]: [java.lang.ThreadGroup:uncaughtException:-1]: at net.minecraftforge.server.ServerMain.main(ServerMain.java:57)
  9. and what command should i use for the bat to start the server?
  10. java or javaw?
  11. i have java 8 but it uses the other one, how i change that?
  12. [03Jun2022 15:24:32.264] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 36.2.0, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge] [03Jun2022 15:24:32.269] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 8.0.9+86+master.3cf110c starting: java version 18.0.1 by Oracle Corporation [03Jun2022 15:24:32.288] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,testharness,fmlclient,fmlserver]
  13. Batta joined the community
  14. i tryed to open a server for mods "garden of glass questbook edition" from the cursed forge app but it dosen't open this is the link for the modpack https://www.curseforge.com/minecraft/modpacks/garden-of-glass-questbook-edition tell me what can i do? i just installed java 8, but i can install any version just tell me which

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.