Jump to content
  • Home
  • Files
  • Docs
  • Merch
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
  • coolboy4531

coolboy4531

Members
 View Profile  See their activity
  • Content Count

    584
  • Joined

    February 27, 2013
  • Last visited

    December 17, 2016

 Content Type 

  • All Activity

Profiles

  • Status Updates
  • Status Replies

Forums

  • Topics
  • Posts

Calendar

  • Events
  • Event Comments

Posts posted by coolboy4531

  • Prev
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • Next
  • Page 7 of 23  
  1. [1.7.2] Simple Question: How to make a crafting Recipe for Self Made Items?

    in Modder Support

    Posted May 3, 2014


    You need to get the instance of your item.

  2. GitHub

    in Modder Support

    Posted May 3, 2014


    This isn't about Forge, I don't think.

     

    Why not trying using the GitHub tutorials?

  3. [1.7.2/1.6.4] How to change Minecraft main menu?

    in Modder Support

    Posted May 2, 2014


    There is another post going on about the exact same question.

    If you don't want to bother looking at it - you should use GuiOpenEvent.

     

    Check if the event's GUI is an instance of GuiMainMenu, cancel it - and override it with your own version of the main-menu.

  4. [1.6.4] Edit MainMenu

    in Modder Support

    Posted May 2, 2014


    e.gui is null.

    You need to check if (e.gui) is an instance of (the gui you want)

  5. [1.7.2] [~Solved] How to set 'damageDrop' (with chance) depending on 'itemDrop'?

    in Modder Support

    Posted May 2, 2014


    Have you ever wondered (on the top of the class) that there are fields?

  6. Furnace only faces one direction

    in Modder Support

    Posted April 30, 2014


    Lel. Dat exaggeration.

     

    Here's one:

    http://www.minecraftforge.net/forum/index.php?topic=17688.0

     

  7. Furnace only faces one direction

    in Modder Support

    Posted April 30, 2014


    If you search on Google, you will see that this question has been asked 9000+ times on the Forge (Modder Support) forums already.

  8. EntityThrowable damage

    in Modder Support

    Posted April 30, 2014


    Try looking at EntitySnowball, on how it does damage to mobs (especially to Blazes)

  9. Why can't i smelt my own Ore ?

    in Modder Support

    Posted April 30, 2014


    @Casual did u looked at the Code ? I have registered them already my only problem is the Smelting i used the same structure as in 1.6.2

    ffdsaklfj. How do you not understand what he's trying to tell you to do?

    You are suppose to "register" your items BEFORE you call your addSmelting() method, or the game will not recognize the items because they are even created yet!

  10. [1.7.2] When I debug this is whta happens

    in Modder Support

    Posted April 30, 2014


    You've accidentally added some breakpoints to Eclipse. Try removing them.

     

    How to remove (disable) ALL breakpoints from Eclipse:

    Look for Run.
    Click on:
    > Remove all Breakpoints
    --- You can also press Skip all Breakpoints ---
    

     

    How to remove SOME breakpoints from Eclipse:

    Look for Window.
    Hover over Show View.
    Click on Other...
    Open the Folder named "Debug"
    Click on Breakpoints.
    Uncheck the breakpoints OR right-click and delete them.
    

  11. Modifying Smelting

    in Modder Support

    Posted April 29, 2014


    By coremod, he most likely means to use ASM.

     

    If you are unfamiliar to ASM, I suggest you not to try it.

     

    More Info:

    http://asm.ow2.org/

  12. [1.6.4] Edit MainMenu

    in Modder Support

    Posted April 29, 2014


    Try using GuiOpenEvent and cancel the gui for the main menu (GuiMainMenu), override it with your own main menu gui.

  13. Issue with Textures and Block Names

    in Modder Support

    Posted April 28, 2014


    Can we see the log when Forge (Minecraft) runs?

     

    Then we can see what error springs up when it tries to load your texture.

  14. [1.7.2] why is there no tnt if i die?

    in Modder Support

    Posted April 28, 2014


    @Recipes

    I replied to it in another post, wasn't sure if it was yours, or someone elses but you'll find it on the Modder Support Forum (this forum)

  15. Hide mob name ...

    in Modder Support

    Posted April 28, 2014


    Hmm.

    We need to see your code since we don't know what is really happening.

  16. [1.7.2] remove a crafting recept

    in Modder Support

    Posted April 28, 2014


    No no no. Don't do that.

    You can get the list of the recipes, and remove them.

     

    First what you need to do is get the list of <IRecipe> which is CraftingManager's instance of .getRecipeList().

    Do a loop, for the size of the recipe list, and get the recipe during each loop.

    Do an (if) statement to check if its an instance of ShapedRecipes/ShapelessRecipes.

    Check if the itemstack is the same as the recipe's output, and if they are, remove them.

     

     

  17. [1.7.2] Advanced Potion Effects?

    in Modder Support

    Posted April 28, 2014


    You could save a data value (seperately) in LivingUpdateEvent, then if the data value is correct you can use the overlay event.

  18. [1.7.2] Teleporting Player Like Enderman

    in Modder Support

    Posted April 28, 2014


    You could use that code or...

    player.setPositionAndUpdate(//fields)
    

    You can get a random value (Random.class), and place it in the fields for teleportation like an enderman.

  19. [1.7.2]Avoid destroying blocks using own sword

    in Modder Support

    Posted April 27, 2014


    What do you mean by calling it?

     

    You can put that in your main class and use that Enum for registration.

  20. i don't understand this achivement tutorial rightly!

    in Modder Support

    Posted April 27, 2014


    You are suppose to use:

    BlockEvent.BreakEvent
    

    First of all, learn basic Java - first.

    "event" is the event not the block/thing you are breaking.

     

    You need to get the [block] you are breaking, and add an achievement if its breaks.

     

  21. i don't understand this achivement tutorial rightly!

    in Modder Support

    Posted April 27, 2014


    event.toString().contains("CopperOre")
    

     

    You're kidding right.

  22. [1.7.2]Avoid destroying blocks using own sword

    in Modder Support

    Posted April 27, 2014


    Because I'm using my own Enum for the tools.. I can't extend ItemSword because it would give me an error

     

    You can extend ItemSword, even if you want to use your own enum.

    Forge has there own ToolMaterial Enum handler for tools.

     

    Example:

    static ToolMaterial NAME = EnumHelper.addToolMaterial("NAME", int par1, int par2, float par3, float par4, int par5);
    

     

    par1- Harvest Level

    par2- Max Uses

    par3- Efficiency on Proper Material

    par4- Damage VS Entity

    par5- Enchantability

  23. [1.7.2-10.12.1.1061] Crash when placing specific item in a crafting table GUI

    in Modder Support

    Posted April 26, 2014


    Why do you register your items like that? ...

  24. always crashes at mojang screen please help

    in Modder Support

    Posted April 26, 2014


    Caused by: java.lang.IllegalArgumentException: Duplicate enchantment id!
       at net.minecraft.enchantment.Enchantment.<init>(Enchantment.java:113)
       at mods.XW.tools.EnchantmentweaponForge.<init>(EnchantmentweaponForge.java:12)
       at mods.XW.tools.XWTools.<clinit>(XWTools.java:56)
    

    That is the error.

    One of your mods or (a mod) has compatibility issues with enchantment ids.

     

    It's happening wiht the XWTools mod.

  25. [1.7.2-10.12.1.1061] Crash when placing specific item in a crafting table GUI

    in Modder Support

    Posted April 26, 2014


    Give us the class for the Item that causes the crash.

  • Prev
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • Next
  • Page 7 of 23  
  • All Activity
  • Home
  • coolboy4531
  • Theme
  • Contact Us
  • Discord

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