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.

Schwowsers

Members
  • Joined

  • Last visited

  1. Two, going off the run task you posted in this thread, I believe you have the wrong syntax for the args and jvmArgs methods, as pointed out by a Gradle dev here. Instead of passing each set of arguments as a single string, pass each token separately, as follows: args("--version", "1.6", "--tweakClass", "cpw.mods.fml.common.launcher.FMLTweaker", "--accessToken", "FML") jvmArgs("-Xincgc", "-Xmx1024M", "-Xms1024M", "-Djava.library.path=${project.buildDir}/natives", "-Dfml.ignoreInvalidMinecraftCertificates=true") That said, these run tasks appear to work for Forge version 1.6.4-9.11.1.964: task runClient(type: JavaExec) { classpath = sourceSets.main.runtimeClasspath main = "net.minecraft.launchwrapper.Launch" args("--version", "1.6", "--tweakClass", "cpw.mods.fml.common.launcher.FMLTweaker", "--accessToken", "FML") jvmArgs("-Xincgc", "-Xmx1024M", "-Xms1024M", "-Djava.library.path=${project.buildDir}/natives", "-Dfml.ignoreInvalidMinecraftCertificates=true") workingDir("eclipse") } task runServer(type: JavaExec) { classpath = sourceSets.main.runtimeClasspath main = "cpw.mods.fml.relauncher.ServerLaunchWrapper" jvmArgs("-Xincgc", "-Dfml.ignoreInvalidMinecraftCertificates=true") } Note that you'll have to manually configure the project's properties in order for Netbeans' run button (or F6) to execute either of these tasks. Also, keep in mind that if you use the clean task, it will delete your build folder along with the natives folder inside. You can run the extractNatives task again to get it back.

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.