I feel like in a dark cave with no torches left .....
You could try this:
Code:
#!/bin/bash
cd ~/FTBLite/.minecraft
LD_LIBRARY_PATH=/usr/lib/jvm/java-7-oracle/jre/lib/amd64/ java -Xmx1024M -Xms512M -cp minecraft.jar net.minecraft.LauncherFrame
but:
cd ~/FTBLite/.minecraft could also be
cd ~/FTB/FTBLite/.minecraft or anything similar, depending on where your FTB was installed and where the FTB /.minecraft folder actually resides.
java-7-oracle (my modification) is only correct if you actually still run the Java mentioned in your log; adapt, if necessary.
net.minecraft.LauncherFrame - this is where I really don't know what to do. Does FTB/Forge still use that LauncherFrame or replace it? What about Voxelmenu, doesn't that replace parts of the launching procedure for sure?
My installation of the MC source code was made by Forge and does not contain a package "net.minecraft.LauncherFrame", so I cannot check which other package offers similar functionality.
Hence I suggest the following workaround:
- first try with
net.minecraft.LauncherFrame, as I posted;
- on failure, disable the Voxelmenu mod and try again;
- failing that, leave Voxelmenu disabled, replace
net.minecraft.LauncherFrame by any of the following strings and try again:
cpw.mods.fml.client
cpw.mods.fml.client.modloader
cpw.mods.fml.common.modloader
cpw.mods.fml.relauncher
- if still no avail, try to contact the person who helped you make the original script