Everything posted by LexManos
-
bug found
This sounds like you added rei's minimap to the jar file and for the wrong Minecraft version. Reis minimap DOESN'T need to go into the jar. It's a mods folder mod.
-
Problem Installing Forge for 1.6.2 on Windows 8?
I forgot about that program. Please write up a tutorial and full description on how to use it. I'll toss it into the EAQ's/Main release page.
-
Change private modifier to public in a class
There are other ways to deal with fire rates without this.
-
Ellian detectoir config files not detected?
Find the jvm args config option then add -Dvar_name=value
-
Ellian detectoir config files not detected?
You know that profiles do have a jvm argument congih option you can define env vars with right? Anyways the better solution is that she fixes her code.
-
Mods folder for different versions
Profiles have a gamedir option for a reason use it.
-
Arguments in the new forge installer
The adfly really isn't that big of a deal unless you plan on taking a significant portion of our download base. Yes its fairly important to me as I'm unemployed and this is my sole source of income. But you should be fine. The MAIN issue is that to be blunt... you know nothing needed to do what you want to do.. basic zip interactions. (You only need to extract a json file) and then editing and reading of json files. I would seriously hold off any plans you have untill you do some research to learn exactly what you should bhe doing. Here is a hint, our installer is open source.
-
Arguments in the new forge installer
Why not just use the universal jar if you're going to go to that lengths...
-
Minecraft Forge stuck at Loading World Screen
java.lang.NoSuchMethodError: net.minecraft.world.WorldServer.X()Lnet/minecraft/scoreboard/Scoreboard; This typically happens when you've either 1) Installed Forge into the wrong version of minecraft {You're targeting 1.5.2 with that version} 2) You installed some other mod into the jar that derps up the obfusication. Clean your jar and make sure it's 1.5.2 and try again.
-
Minecraft 1.6.2 not starting and "Loading versions..."
Speak with the SPC people about install instructions. We do not support any mods that edit the base jar.
-
Ellian detectoir config files not detected?
This has nothing to do with Forge. And everything to do with the horrible way that modder is getting the config directory. 2013-07-26 09:54:56 [iNFO] [sTDERR] java.io.FileNotFoundException: C:\Users\Lex\AppData\Roaming\config\EllianDetector.materials.settings (The system cannot find the path specified) 2013-07-26 09:54:56 [iNFO] [sTDERR] at java.io.FileOutputStream.open(Native Method) 2013-07-26 09:54:56 [iNFO] [sTDERR] at java.io.FileOutputStream.<init>(Unknown Source) 2013-07-26 09:54:56 [iNFO] [sTDERR] at java.io.FileOutputStream.<init>(Unknown Source) 2013-07-26 09:54:56 [iNFO] [sTDERR] at java.io.FileWriter.<init>(Unknown Source) 2013-07-26 09:54:56 [iNFO] [sTDERR] at elliandetector.EllianDetectorConfiguration.writeMaterials(EllianDetectorConfiguration.java:470) 2013-07-26 09:54:56 [iNFO] [sTDERR] at elliandetector.EllianDetector.saveMaterials(EllianDetector.java:435) 2013-07-26 09:54:56 [iNFO] [sTDERR] at EllianGuiMaterialScreen.addMaterial(EllianGuiMaterialScreen.java:162) 2013-07-26 09:54:56 [iNFO] [sTDERR] at EllianGuiMaterialEditorScreen.accept(EllianGuiMaterialEditorScreen.java:216) 2013-07-26 09:54:56 [iNFO] [sTDERR] at EllianGuiMaterialEditorScreen.func_73875_a(EllianGuiMaterialEditorScreen.java:108) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.client.gui.GuiScreen.func_73864_a(SourceFile:69) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.client.gui.GuiScreen.func_73867_d(SourceFile:128) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.client.gui.GuiScreen.func_73862_m(SourceFile:107) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1554) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:898) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:826) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.client.main.Main.main(SourceFile:101) 2013-07-26 09:54:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-07-26 09:54:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-07-26 09:54:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-07-26 09:54:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2013-07-26 09:54:56 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) Does that look like the correct directory to you? She has this function: public static File getAppDir() { String command = System.getProperty("sun.java.command"); command = command.substring(command.indexOf("gameDir") + ; command = command.substring(command.length() - command.indexOf("assetsDir") - 4); command = command.replace("assets", ""); File minecraftHome = new File(command); if (minecraftHome.exists()) { return minecraftHome; } minecraftHome = new File(System.getProperty("user.home") + File.separator + "AppData" + File.separator + "Roaming"); if (minecraftHome.exists()) { return minecraftHome; } throw new RuntimeException("Minecraft folder not found"); } Which is accessed by this function: public static File getAppDir(String app) { return EllianDetector2MinecraftProxy.getAppDir(); } Which is used here to get the config folder: public static void initConfFolder() { CONFIG_FOLDER = getAppDir("minecraft") + File.separator + "config"; } Now note: 1) that bouncer function that supposed to take and use the "minecraft" doesn't. 2) Her entire getAppDir function could be compressed down to a single call to Minecraft.getMCDir() and be guaranteed to get the folder she wants. (I assume its a 'she' based off the name, I think it's Pronounced like Ellian from Sinefield, if not sorry I took a guess} 3) Her functions is horrid because it assumes that the command line will ALWAYS be in the format of --gameDir {path} --assetsDir which is well.. not how command lines work. So, because of her buggy code, your options are either 1) Dont use her stuff. Or 2) use the system variable ELLIAN_CONFIG to manually set the proper config folder.
-
Minecraft 1.6.2 not starting and "Loading versions..."
Make sure you've got completely clean jars by deleting the 1.6.2 folder and any 1.6.2-Forge folders in the versions folder. Run 1.6.2 through he normal launcher once. And re-installing.
-
Support for Non-Identified mods (no mod_*.class)
Optifine isn't a mod in the normal sense. It is a Jar Mod. It doesn't have a 'Mod Class' it injects itself directly into the jar. There is no way for us to 'Load' this. However, we have put in place mechanisms that will allow Optifine to be a simple mods folder mod. Doesn't seem like he is using them yet though. If a modder doesn't take advantage of the tools that we or modloader provides, then it's there issue.
-
Forge doesn't boot...
Use the Forge profile. If you arnt using the default launcher/installer then you probably screwed up the install. It's NOT 'Drag into minecraft.jar' anymore.
-
Please help putting forge on my server.
Run the installer for the server locally Upload the folder that it creates to the host.. No jars need editing, just need to run the correct jar.
-
I can't get the installer to open
Yes because your posts are so descriptive we know EXACTLY what you're doing wrong..
-
Forge not booting at all? Try this...
There is a reason why there is a popup at the end of the install that says that it installed to the 'Forge' profile... Use the Forge profile, else you'll get vanilla.
-
GL ERORR
Still nto sure what 'Forge version wasnt actually forge really' means.. If you select the Forge profile in the new launcher, you will be playing Forge. ya, i'm not gunna call this a bug unless mojang says it is. I think this is just user stupidity. I was right when i guess what was happening. It's doing a fog value of 0.1F - respiration * 0.03F; With a level of 4 that makes the fog value -0.02F which is a invalid value. There is NO BENIFIT to a respiration > 3. Hence why Mojang set the max level to 3.
-
Registering Icon with String or Image
That sentence didn't even make sense. But i'm locking this because it's not needed and it undermines how the new system is designed. Use the new system how it's designed and you'll be fine.
-
Forge changelog starting from build 1.6.2-9.10.0.801
Humm somone derped up the permissions in jenkins. Fixed it, good to go now.
-
Singing Mods / Fingerprint System
If you load it using Forge, the invalid signature event will be thrown and you'll see the "Hack Report" in the Forge log. In this case, everything is working as intended. At least, that's how I assume you want this system to work. Yup that's how the system works, For doing it interally, but Violation events are fired globally. Which is where cross checking comes into play. If you load it using Forge, the invalid signature event will NOT be thrown and you WON'T see the "Hack Report" in the Forge log. Crucially, all three mods identify as id="cuchaz.powerTools" name="Power Tools" so an end user could not tell the difference from the Forge mods screen. This isn't a exploit. From Forge's point of view, this is two completely separate mods that happen to have the same id and name. We are not the naming authority. We do not police names. We don't care if there are two mods that exist with the same name. As long as they arn't installed at the same time. This isn't a 'hack', you're not 'hacking' anything as there is NOTHING to hack. Mod 'security' solely falls on the end user not installing compromised mods from source they do not trust.
-
Singing Mods / Fingerprint System
I actually have a extensive background in actual security. There is no 'exploit'. And the system does work. As evidenced by the few mods that do cross-checking already. {See the issues that raised with RailCraft and EE/RP mods} The system is not designed as security and as such is not responsible for the situations you're referring to.
-
Moving things to database
What exactly are you suggesting we do? Go to each modders and push them with another modder and say "You're working with this guy now!"?
-
How do I install mods after I get Forge to work?
Please stop using 9minecraft.net, 6minecraft.net, minecraftdl.com, those sites are ad sites that are in no way associated with the actual mods. Go to the MinecraftForums and you can find all the mods you listed. And those posts are done by the actual modders and have instructions on how to install them properly.
-
Forge build(1.6.2) crashes on my server.
Seince you're using MCPC i'd advise talking to the MCPC team. But it looks like whatever mod you're going through the portal of, is not correctly registering there dimension ID.
IPS spam blocked by CleanTalk.