Jump to content
  • 0

Doesnt launch modspacks


Zamto

Question

7 answers to this question

Recommended Posts

  • 0
9 hours ago, Zamto said:

So everytime i try to launch a mod pack it just restarts technic launcher if anyone has any ideas help please

Logs: https://pastebin.com/yntVfBAA

You see those Java_Options being mentioned? Xmx512M... This means that whatever you try to set your java RAM usage to, it will be hard-limited to 512 MB.

Run this file: http://download.uskarian.net/technic/clearJavaEnvVars.bat

Link to comment
Share on other sites

  • 0
3 hours ago, justwannadownloadascript said:

how do i run this file? i just keep clicking in this link but it just opens a site full of text and it doesnt download anything. please help.

So are you clicking the pastebin link or the uskarian link?

Link to comment
Share on other sites

  • 0

I'm clicking in the uskarian link

 

It appears as an white background site with this text in it:

 

@ECHO off
ECHO Report any issues related to this script to [email protected]
ECHO If you did not download this script from uskarian.net then cease execution of this script immediately! The validity of the script cannot be assured.
ECHO(
ECHO Description of script:
ECHO This script will stop any running javaw processes. This means any programs that are created in Java will be stopped. This includes Minecraft and the Technic launcher. Then it will wipe system & user set Java environment variables.
ECHO(
ECHO(
ECHO Liability:
ECHO This script is provided "as is", without warranty of any kind, expressed or implied. You cannot hold us accountable for any claim, damages, or other liability, under any circumstance.
ECHO(
ECHO By agreeing to continue the execution of this script. You're agreeing to not hold us accountable for any sort of damages.

:choice
ECHO(
SET /P c=Do you wish to continue executing this script?[Y/N]
IF /I "%c%" EQU "Y" GOTO :continue
IF /I "%c%" EQU "N" GOTO :exit
GOTO :choice


:exit
cls
echo User canceled further execution of script.
PAUSE 
EXIT

:continue
CLS
::kill any currently running java processes
ECHO Killing any running javaw.exe processes(If this errors. That's fine.)
TASKKILL /f /im javaw.exe
::override user set java variables messing with launcher
::Clears the system variable _JAVA_OPTIONS
ECHO(
ECHO Wiping system wide java options
SETX _JAVA_OPTIONS "" /m
::Clears the local variable _JAVA_OPTIONS
ECHO(
ECHO Wiping user account java options
SETX _JAVA_OPTIONS ""
::To let you know if it failed or was successful. Just press esc or enter.
PAUSE
EXIT
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...