Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mazetar

Mazetar

Forge Modder
 View Profile  See their activity
  • Content Count

    1343
  • Joined

    August 12, 2012
  • Last visited

    July 2, 2014

Community Reputation

271 Excellent

About Mazetar

  • Rank
    World Shaper

Converted

  • Gender
    Undisclosed
  • Location
    Snowy base close to the north pole.
  • Personal Text
    On a fun quest to learn programming!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Mazetar started following Is there a player.getCurrentItemOrArmor() for blocks? and [Solved]Blocks outside of @mod class February 1, 2017
  2. Mazetar

    [1.7.2] Need Help Playing Sounds

    Mazetar replied to TLHPoE's topic in Modder Support

    Rows and column : http://www.gitta.info/DataCompress/en/image/column_row.jpg So that would be the 11th symbol/character on that line Aka. re-check the file, try a different file/simpler one to check that it's the file and not something else
    • April 7, 2014
    • 5 replies
  3. Mazetar

    [1.7.2][Solved] Id for Block or Item

    Mazetar replied to PlatonCraft's topic in Modder Support

    you don't. ID's are gone! You do not have to deal with them anymore.
    • January 3, 2014
    • 10 replies
  4. Mazetar

    [Coding][Help] New to to forge and modding with 1.7.2

    Mazetar replied to Osky2918's topic in ForgeGradle

    The function numbers are what they are named when they get decompiled. As we do not have access to the unobfuscated minecraft source, we have to decompile and deobfuscate it ourselfs. That is what the tools the MCP Team provides is doing. By using their system, we (the modders) can submit understandable "real" names to methods. In every major minecraft update it is changed up a lot and therefore a lot of the names must be re-added or completely re-done as methods change etc. Therefore when the new versions are just comming out, we (the modders) haven't had time to mess around to much with the new code and submit names, therefore a lot of things will have such names for the time being. Also keep in mind that Forge is NOT out with a stable release for 1.7.2 it's still very much indev, and so is MCP. Therefore I would NOT recommend starting to learn modding by starting for 1.7.2 now, I would either wait 1 month and spend the time learning more Java and computer science or whatever. And come back once things are a bit more beginner friendly. Either that or start for 1.6.4 and re-learn some of it when things are more settled for 1.7.2
    • January 3, 2014
    • 1 reply
  5. Mazetar

    [1.6.4]WHEN GO TO TEST I KEEP GETTING CRASH ERROR

    Mazetar replied to xtreameprogram's topic in Modder Support

    Use the recommended builds, not the latest ones The latest are indev versions and might be highly unstable, they are not suited for learning to mod. And the current latest is especially not meant for beginners as it's the first indev release for 1.7 and full of under development stuffs. So go use the recommended build(s) mate
    • January 1, 2014
    • 6 replies
  6. Mazetar

    Coding standards

    Mazetar replied to teratogenytale's topic in General Discussion

    If you follow common java naming conventions + what Draco said then you are better off than 90% of the basic modders around here
    • December 31, 2013
    • 3 replies
  7. Mazetar

    Changes from 1.6.4 to 1.7

    Mazetar replied to Fowlron's topic in Modder Support

    The best recommendation I can give you at this stage would be to spend some time off from modding, use it to play around with java. Create some java programs, and some games that's a great way to spend the time at least Then later come back and there will be more clear to everyone what's changed and how things should be done. At the moment there's no stable release of forge, there's little use in fooling around with the 1.7 alpha releases unless your plan is to aid in the development of it. So therefore the best use of your time would be to either program some more in java and have fun making games, or polish your exisitng mod design and ideas. I.E. create a plan for your mod, a proper design document and make prep work for the coding phase.
    • December 31, 2013
    • 2 replies
  8. Mazetar

    Minecraft 1.7 - News

    Mazetar replied to LexManos's topic in Releases

    Yes, they are submitted to a bot at the IRC channel. And be very careful to check and double check that you are correct before you submit your mappings Check the MCP wiki page, and go talk to the guys on irc.
    • December 30, 2013
    • 134 replies
  9. Mazetar

    Useful Tutorial?

    Mazetar replied to sockpuppetcow's topic in Modder Support

    To find tutorials let me advertise my own pet project: http://www.mazetar.com/mctuts/displayTutorials.php There you can find a bunch of forge tutorials in a searchable list For beginners I would recommend the following: 1. Learn java http://see.stanford.edu/see/lecturelist.aspx?coll=824a47e1-135f-4508-a5aa-866adcae1111 2. Get into modding with forge: www.youtube.com/user/VsweGoesMinecraft/videos?flow=grid&view=50&shelf_id=3
    • December 26, 2013
    • 3 replies
  10. Mazetar

    How can I learn about Forge modding... and armor?

    Mazetar replied to riderj's topic in Modder Support

    Then VSWE is the place I would tell you to start Also THIS site: http://greyminecraftcoder.blogspot.no/p/list-of-topics.html Is the BEST resource to understanding the source, it's a list of posts detailing the inner workings of minecraft as the author ventures into the code. I use it quite frequently as a reference when I work with unfamiliar (and familar stuff lol) concepts. Also if you ever discover a tutorial or informative site which you'd think fits my list then send me a PM and I'll add it PS: From the blog mentioned above, check out: http://greyminecraftcoder.blogspot.no/2013/11/how-forge-starts-up-your-code.html
    • December 25, 2013
    • 5 replies
  11. Mazetar

    How can I learn about Forge modding... and armor?

    Mazetar replied to riderj's topic in Modder Support

    Vswe is one of the few whom has made tutorials which aren't copy paste. You can check it out here: www.youtube.com/user/VsweGoesMinecraft/videos?flow=grid&view=50&shelf_id=3 It doesn't deal with armor but its great stuff for learning forge and GUI stuffs Also for finding tutorials you may find my site useful: http://mazetar.com/mctuts/searchform.php (Self promoting much? )
    • December 25, 2013
    • 5 replies
  12. Mazetar

    Useless code? (ItemPickaxe)

    Mazetar replied to Ernio's topic in Modder Support

    Try reading into basically any other system in minecraft, and you will cry a lot more!
    • December 23, 2013
    • 4 replies
  13. Mazetar

    Get waterbucekt from block when right klick

    Mazetar replied to Learwin's topic in Modder Support

    Meh I can't be bothered to type the code for you. I wouldn't even care to search around for one of the many posts about the very same topic, or for tutorials on the subject. Maybe you could do this on your own, it MAY be that you can solve this one yourself
    • December 21, 2013
    • 5 replies
  14. Mazetar

    My ore spawns too much! [SOLVED]

    Mazetar replied to ajaygross137's topic in Modder Support

    STOP! Right now, just stop. THINK! Just think over what you want to achieve for a few seconds. Consider what it means for something to be rare, it means it happens less often. So how do we make something happen at a % chance? Now by using Random you are easily able to do that I bet Now considering some other ways to limit spawning, we could make sure to only do it in a specific Y range like diamonds or only in specific biomes. Yeah, well I said more than I intended to say, so there ya go Good luck
    • December 13, 2013
    • 6 replies
  15. Mazetar

    My ore spawns too much! [SOLVED]

    Mazetar replied to ajaygross137's topic in Modder Support

    Then reduce the chance for it to generate? atm it seems like you are generating 25 veins per chunk or something
    • December 13, 2013
    • 6 replies
  16. Mazetar

    Biome too...watery

    Mazetar replied to DanilaFE's topic in Modder Support

    Was the only change you did between the first and second post screenshots changing the biome height? or did you change other stuff too?
    • December 13, 2013
    • 9 replies
  • All Activity
  • Home
  • Mazetar
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community