noonzark Posted September 24, 2012 Share Posted September 24, 2012 hey every one im kind of new to modding and java coding but know lots already, what i want help with is modding the minecraft login screen if someone could help me out that would be great all i need to know is what the java name is in eclipse and may be some examples on how to do some things with it This is what i want to change Link to comment Share on other sites More sharing options...
andrewdonshik Posted September 24, 2012 Share Posted September 24, 2012 Why the old launcher? Link to comment Share on other sites More sharing options...
noonzark Posted September 24, 2012 Author Share Posted September 24, 2012 latest one i just want to change it by adding a picture or movie behind it Link to comment Share on other sites More sharing options...
noonzark Posted September 24, 2012 Author Share Posted September 24, 2012 Why the old launcher? it was the first pic of a client launcher i saw Link to comment Share on other sites More sharing options...
andrewdonshik Posted September 24, 2012 Share Posted September 24, 2012 it was the first pic of a client launcher i saw Welp, I know nothing about java, so I can't help you. Link to comment Share on other sites More sharing options...
noonzark Posted September 24, 2012 Author Share Posted September 24, 2012 Welp, I know nothing about java, so I can't help you. lol ok :P Link to comment Share on other sites More sharing options...
jakj Posted September 24, 2012 Share Posted September 24, 2012 Decompile, edit, recompile. Can't use MCP for the Launcher so you have to find another tool, and it won't be able to deobfuscate. Link to comment Share on other sites More sharing options...
Jorcer Posted September 24, 2012 Share Posted September 24, 2012 ...deobfuscate. I have seen that word a few times and now I must ask...What does it mean? Link to comment Share on other sites More sharing options...
Neowulf Posted September 24, 2012 Share Posted September 24, 2012 Obfuscation changes the source from human readable to something machine readable but gibberish to humans. Minecraft's source is "protected" by obfuscation, all the variables and functions in the source are renamed to gibberish names like aaa, aab, aac, ect... and all references to them are changed accordingly. Java doesn't care if an onTick() function is called onTick() or asr(), but the human brain does. Deobfuscation in MCP runs through the code and fixes it, turning the references and declarations back to human readable descriptive names. I'm pretty sure it's just a translation table, so we don't know for sure what the original names were but as long as your mod references asr() instead of onTick() it'll work fine. As you can guess, obfuscation does jack squat to protect the source. Only thing it's good at is making modding harder so fewer mods get made and there is less interest in minecraft in general, just like any other intellectual property protection scheme. Link to comment Share on other sites More sharing options...
Jorcer Posted September 24, 2012 Share Posted September 24, 2012 Obfuscation changes the source from human readable to something machine readable but gibberish to humans. Minecraft's source is "protected" by obfuscation, all the variables and functions in the source are renamed to gibberish names like aaa, aab, aac, ect... and all references to them are changed accordingly. Java doesn't care if an onTick() function is called onTick() or asr(), but the human brain does. Deobfuscation in MCP runs through the code and fixes it, turning the references and declarations back to human readable descriptive names. I'm pretty sure it's just a translation table, so we don't know for sure what the original names were but as long as your mod references asr() instead of onTick() it'll work fine. As you can guess, obfuscation does jack squat to protect the source. Only thing it's good at is making modding harder so fewer mods get made and there is less interest in minecraft in general, just like any other intellectual property protection scheme. Ahh so basically it is like a shitty code that, once cracked just protects it from lazy people... Link to comment Share on other sites More sharing options...
Neowulf Posted September 24, 2012 Share Posted September 24, 2012 Yup. Link to comment Share on other sites More sharing options...
noonzark Posted September 24, 2012 Author Share Posted September 24, 2012 d Decompile, edit, recompile. Can't use MCP for the Launcher so you have to find another tool, and it won't be able to deobfuscate. do u have any idea how to do it then? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now