Page 1 of 4 123 ... LastLast
Results 1 to 15 of 50
  1. #1
    FullStatic's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Minecraft Section
    Posts
    935
    Reputation
    -41
    Thanks
    55
    My Mood
    Aggressive

    [Tutorial]Become a MC Modder EASY



    Thanks guys, for all the support, the thread got stickyed

    Introduction
    Hey there, So your here at MPGH and want to learn how to MOD eh? Well let me tell you just an easy thing . It took me several tutorials in different areas to finally pull off my first mod the “Cow Diamond Hunter” Were the cow drops diamond instead of leather, simple but effective. The link will be added later .
    What you will need
    > Java SDK Java SE Downloads [Download the one that says “JAVA SE[Standard Edition] 6 Update 24”
    >MCP-Minecraft Coders Pack MCP Releases - Minecraft Coder Pack
    >NotePad ++ Notepad++ 5.9 Release | 5.9

    Setting up
    >Install Java SDK
    >Make a new folder in C:/ and call it “MCP” and put the contence of the *** Rar into the folder
    >install notepad++
    >Go to Start>Find computer and right click the text>Go to properties>Advanced System Settings(right)>Variables>New, Name: Path Location: C:\Program Files\Java\jdk1.6.0_24\bin or if you installed it somewere else.
    Heres a video for Path setting.

    >7ZIP 7-Zip
    Starting the process
    Now you have done all that Go into your *** folder and then locate your .minecraft folder.
    Copy the bin folder and the recourses folder into the *** folder called “jar” or “jar files”
    Now you have doen this run the decompiler. Let it do its thing. Then go to the sources folder/minecraft/net/minecraft/src and then open EntityCow.java with notepad++.
    Now scroll down to the bottom and find
    Code:
      protected int getDropItemId()
        {
            return Item.leather.shiftedIndex;
        }
    No change the “leather” to anything like “diamond”. We will be replacing with diamond, so this is the code now:
    Code:
        protected int getDropItemId()
        {
            return Item.diamond.shiftedIndex;
        }
    Now save it as EntityCow.java (just click save)
    Now open the recompliler and recompile it. There should be no errors, if you do get one PM me or comment with it.

    Now open the conf folder in *** and edit client_obfuscation.txt. replace it with the name of the thing your editing! We edited EntityCow so replace everything with that, if we edited EntityCow and EntitySheep we would add another line with EntitySheep.
    Save it and then run reobf, once its finished go to the final_out folder and then minecraft, youll see one or 2 class files in it, go into your .minecraft folder then bin then find minecraft.jar and right click and then with 7zip open achive. Youll see folders. DELTE THE META-IF FODLER and then drag the class files in to the 7zip of minecraft.jar it warm you you are replacing files just ignor it and click yes.

    Now just run your minecraft.exe normally and go kill a cow.
    This is what you should have got:



    Feedback:

    Quote Originally Posted by hoothoot View Post
    Yeah I really like it. Helped me out a lot and gave me inspiration to start learning
    how to mod (games like minecraft).
    Quote Originally Posted by FishBone- View Post
    epic!!! ty man your the best for now im going to learn coding java
    Quote Originally Posted by blazeddd View Post
    Forum nazi says wha???

    lol, ********** -you're doing a great job, keep it up man.
    Quote Originally Posted by ElitePk View Post
    thanks, the tutorial was great. I made cows drop obsidian




    Credits
    The thread "Basic Modding" not because i copyed it but because it inspired me
    Various Youtube Videos
    MinecraftForum Tutorials (Not one stood out)
    Last edited by Archangel; 04-22-2011 at 05:52 AM.

  2. The Following 9 Users Say Thank You to FullStatic For This Useful Post:

    ao6238 (04-15-2011),Cal (08-28-2011),dimy (04-22-2011),ElitePk (04-11-2011),FishBone- (04-11-2011),GBot! (04-12-2011),hoothoot (04-11-2011),matypatty (04-17-2011),[MPGH]Thunder (04-11-2011)

  3. #2
    Jakob's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    4,721
    Reputation
    237
    Thanks
    510
    My Mood
    Psychedelic
    You know what, Imma try it. Seems very legit and awesome. You get +1 Cookie if it all goes well.
    RIP MINECRAFT SECTION!
    03.10.2010 - 26.09.2011

  4. #3
    FishBone-'s Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    probably somewere there :O
    Posts
    527
    Reputation
    12
    Thanks
    58
    My Mood
    Brooding
    epic!!! ty man your the best for now im going to learn coding java
    HELLO, I LIKE HELPING, HELPING IS FUN

  5. #4
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    Stop remaking the other thread and changing one or two things in it. Your not providing any more information than is needed, and this is borderline spamming.
    Texture Mods


    Obedear, the sky is low

  6. #5
    blazeddd's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    5
    Quote Originally Posted by Heartview View Post
    Stop remaking the other thread and changing one or two things in it. Your not providing any more information than is needed, and this is borderline spamming.
    Forum nazi says wha???

    lol, ********** -you're doing a great job, keep it up man.

  7. The Following User Says Thank You to blazeddd For This Useful Post:

    FullStatic (04-11-2011)

  8. #6
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    Quote Originally Posted by blazeddd View Post
    Forum nazi says wha???

    lol, ********** -you're doing a great job, keep it up man.
    Oh look a clueless leecher.
    Texture Mods


    Obedear, the sky is low

  9. The Following 4 Users Say Thank You to Heartview For This Useful Post:

    Bandicoot (04-11-2011),marcusalier (04-14-2011),Physcadelic (04-12-2011),SomeDude123 (04-13-2011)

  10. #7
    FullStatic's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Minecraft Section
    Posts
    935
    Reputation
    -41
    Thanks
    55
    My Mood
    Aggressive
    I remade it, i didnt copy it at all, i used the knowlage from different tutorials and put them all together and made a GOOD Easy to understand tutorial.

  11. #8
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    Actually, you copied the other tutorial, and changed a few things, and made it yours. That does not count as making your own.
    Texture Mods


    Obedear, the sky is low

  12. #9
    FullStatic's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Minecraft Section
    Posts
    935
    Reputation
    -41
    Thanks
    55
    My Mood
    Aggressive
    For fucks sake Heart.
    I dont know why you dont like me. I DIDNT FUCKING COPY IT.
    i found about 20 tutorials and read them all, them i finally figured out how to do it. the Basic Modding isnt detailed enough for someones first mod. ell be writing indemidiate tutorials for MC Modding.

  13. #10
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    Im not attacking you, Im telling you that this is practically identical to psychedelic's tutorial and the only thing you did was change a few things. And not only that, but you have posted two of the same threads, with only one or two small things changed.

    His tutorial was plenty good for new modders. It got you started did it not? So stop remaking the same thread over and over with tiny things changed. Its practically spamming. And for the record, changing a couple of lines around to make something drop something else is not intermediate. Its basic stuff, just like in psychedelic's tutorial with changing a value to make skeletons not burn.
    Texture Mods


    Obedear, the sky is low

  14. #11
    FullStatic's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Minecraft Section
    Posts
    935
    Reputation
    -41
    Thanks
    55
    My Mood
    Aggressive
    Its nowere near it AT ALL.
    Give me one example here that is copying?

  15. #12
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    If you cant see the similarity your blind. The only thing you really changed is instead of making skeletons not on fire, you changed one line in some code to make cows drop diamonds instead of leather. Other than some differences in wording, its identical.
    Texture Mods


    Obedear, the sky is low

  16. #13
    FullStatic's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Minecraft Section
    Posts
    935
    Reputation
    -41
    Thanks
    55
    My Mood
    Aggressive
    READ THE FUCKING TUT.
    i didnt even have internet when i wrote it in Word.
    Fuck off. i wroet it and theres no copy. and people find it easyer to understand becuase it IS. stop hating.

  17. #14
    Archangel's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Between Both Worlds
    Posts
    8,866
    Reputation
    1021
    Thanks
    9,003
    My Mood
    Angelic
    Leech is leech.

    Cut the flame or get banned

    /closed

  18. #15
    FullStatic's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Minecraft Section
    Posts
    935
    Reputation
    -41
    Thanks
    55
    My Mood
    Aggressive
    reopend and adding credits were credits are due.

Page 1 of 4 123 ... LastLast