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
  • ninjapancakes87

ninjapancakes87

Members
 View Profile  See their activity
  • Content Count

    81
  • Joined

    March 3, 2013
  • Last visited

    May 20, 2018

Community Reputation

7 Neutral

About ninjapancakes87

  • Rank
    Stone Miner

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!
  1. ninjapancakes87 started following [Solved]Tile Entity Errors, Seeking Advanced Tutorial, IExtendedEntityProperties and and 6 others February 1, 2017
  2. ninjapancakes87

    Seeking Advanced Tutorial

    ninjapancakes87 replied to ninjapancakes87's topic in Modder Support

    Alright, I will check those out, thanks!
    • January 25, 2014
    • 2 replies
  3. ninjapancakes87

    Seeking Advanced Tutorial

    ninjapancakes87 posted a topic in Modder Support

    Hi all, Let me just start off by saying I'd like to thank all of the helpful moderators and friendly people on this forum. I essentially taught myself java by modding, and everybody here has been extremely helpful when I need help. Now, I can apply what I've learned outside of modding, and It's come a long way. But now I want to actually start doing more advanced things. I've heard from another modder there is a way, using java.lang.reflect and ASM transformers to actually put methods into classes without base edits, or things of the sort. Does anybody know of a page explaining ASM transformers and what I was talking about? I have a basic idea of what reflect does. Thanks in advance, Ninjapancakes87
    • January 25, 2014
    • 2 replies
  4. ninjapancakes87

    IExtendedEntityProperties

    ninjapancakes87 replied to ninjapancakes87's topic in Modder Support

    Do I still need to call NBTTagCompound in my load and read methods? It seems redundant.
    • January 12, 2014
    • 8 replies
  5. ninjapancakes87

    IExtendedEntityProperties

    ninjapancakes87 replied to ninjapancakes87's topic in Modder Support

    It's the same as entityInit in Entity classes; it gets called during entity construction, so you could put the exact same code in your constructor and it would have the same effect. The benefit of the init method in IExtendedEntityProperties is that it provides a world object, but I haven't found it (the extra world parameter) particularly useful because the entity itself isn't yet finished constructing. I know, just wanted to make sure
    • January 12, 2014
    • 8 replies
  6. ninjapancakes87

    IExtendedEntityProperties

    ninjapancakes87 replied to ninjapancakes87's topic in Modder Support

    Thanks! But on a side note, in your tutorial it does say you haven't found a use for your Init method. You have figured out what that does, correct?
    • January 12, 2014
    • 8 replies
  7. ninjapancakes87

    ResourceLocation problems

    ninjapancakes87 replied to DrEinsteinium's topic in Modder Support

    You could overlay the texture onto the GUI. I'm not sure how that would work, but you could render the player skins into the foreground of your GUI, in the drawGuiContainerForeground method, and have the background be just an empty 256 x 256 texture.
    • January 12, 2014
    • 4 replies
  8. ninjapancakes87

    [1.6.4] Issues registering mob rendering and unknown cause of error

    ninjapancakes87 replied to kenny2810's topic in Modder Support

    Well, your error log says it can't load the texture. If you look at your code, you have your getEntityTexture method returning null. Have that method return your LavaCreeper, or whatever your ResourceLocation is.
    • January 12, 2014
    • 3 replies
  9. ninjapancakes87

    IExtendedEntityProperties

    ninjapancakes87 replied to ninjapancakes87's topic in Modder Support

    I do know how to use datawatcher (never used packets, so I'm going to avoid that route), but thanks for the tip. I looked at your tutorial, and the only question I have is should I add the watcher in the init method of my ExtendedProperties class?
    • January 12, 2014
    • 8 replies
  10. ninjapancakes87

    [1.7.2] Problem with colored chat message

    ninjapancakes87 replied to SackCastellon's topic in Modder Support

    His problem is that it isn't effecting the whole string, it's only effecting until a new-line. *affecting, sorry, can't help it I don't see why it wouldn't carry over from line to line. In fact, it shouldn't, so your problem is in the link. Also, I asked if it was a clickable link because I'm fairly confident the link would reset the chat formatting, so if you put EnumChatFormatting.RED after your link it should show everything but the link in red.
    • January 12, 2014
    • 11 replies
  11. ninjapancakes87

    ResourceLocation problems

    ninjapancakes87 replied to DrEinsteinium's topic in Modder Support

    You can just use the 256x256 texture and past the GUI into the center. Anything not filled in is transparent in GUI's.
    • January 12, 2014
    • 4 replies
  12. ninjapancakes87

    [1.6.4][SOLVED] Trying To Randomly Generate Floating Object

    ninjapancakes87 replied to T3ctonic's topic in Modder Support

    I don't have my code up now, but I do know how I got it is that you need to GameRegistry.registerWorldGenerator(new CustomWorldGenerator) and by default your structure will spawn anywhere, including in the air. I did this with glowstone a while back, and it looks pretty cool. Here's a tut: http://www.minecraftforge.net/wiki/Adding_World_Generation
    • January 12, 2014
    • 22 replies
  13. ninjapancakes87

    [1.7.2] Problem with colored chat message

    ninjapancakes87 replied to SackCastellon's topic in Modder Support

    What do you want the end result to be? When using EnumChatFormatting, whatever format you put will apply to the entire string unless you call EnumChatFormatting.RESET. For example, if you do par1EntityPlayer.addChatMessage(EnumChatFormatting.RED + "Red" + EnumChatFormatting.RESET + " White"); The Red will be colored red, and the white will be colored default. Also, is that a clickable link?
    • January 12, 2014
    • 11 replies
  14. ninjapancakes87

    java.lang.NullPointerException

    ninjapancakes87 replied to Kuntberger's topic in Modder Support

    While I've never worked with fluids before, and don't have a solution, I wanted to know if you are german. Wasser = water
    • January 11, 2014
    • 9 replies
  15. ninjapancakes87

    Trying to create a bow to shoot two arrows

    ninjapancakes87 replied to brettski111's topic in Modder Support

    I made a vanilla-templated bow as well, and one way to use up both arrows is to call par3EntityPlayer.inventory.consumeInventoryItem(Item.itemID); twice. While ineffecient, you can't call decrStackSize because I don't believe it gives you which slot your arrows are in.
    • January 11, 2014
    • 4 replies
  16. ninjapancakes87

    IExtendedEntityProperties

    ninjapancakes87 posted a topic in Modder Support

    Hi all, I'm trying to add some properties to the player, and it's not correctly working. Through some system.out.println()'s, I know it is saving, loading, and initializing my properties, it's just not applying them to the player. I remember reading something old about properties, and packets, but I can't find it anymore and I'm not sure. My properties code: I previously had it work by calling EntityPlayer.getEntityData(), but that doesn't vary between worlds like I want it to.
    • January 11, 2014
    • 8 replies
  • All Activity
  • Home
  • ninjapancakes87
  • Theme

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