Jump to content

Xwaffle

Members
  • Posts

    79
  • Joined

  • Last visited

Everything posted by Xwaffle

  1. I've got no clue on how to create my fishing rod then
  2. hmmm intialized uhm in my ItemOldRod code I use the entity onRightClick if that is what you mean? The Itemoldrod is like ItemFishingRod but I get these crashes. Here is the code for ItemOldRod in which I do Initialize EntityFishingHook. Another thing is that I have a render Entity class if you would like to take a look at that as well?
  3. Sure thing I would be greatly appreciated if this was solved
  4. That could make sense take a look at the class. I have the class extending EntityFishHook as well instead of Entity. Could also be an issue therefore making this.angler becoming EntityFishHook instead of EntityFishingHook(My entity)
  5. Okay, I am working on making a modding in a new Fishing rod and what's happening is that I've basically just made new EntityFishHook, ItemFishingRod, and I also had to make a RenderEntity Class. I did in fact render the entity fine. So right now I am going in game and I am trying to right click and to see if the item will work and I spits this error at me. java.lang.NullPointerException at net.minecraft.entity.projectile.EntityFishHook.onUpdate(EntityFishHook.java:205) at PixelGoal.EntityFishingHook.onUpdate(EntityFishingHook.java:190) at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2337) at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:717) at net.minecraft.world.World.updateEntity(World.java:2299) at net.minecraft.world.World.updateEntities(World.java:2145) at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:546) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:652) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:571) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:469) at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16) --- END ERROR REPORT c50339c7 ---------- Obviously the error has something to do with the Entity. here is the class can somone please give me some help.
  6. I was wondering if there was a way I can create my own icons and then put them in a folder and import the icon to be an icon for an Achievement. Somone give me some help please!
  7. You know what! now that I think about it before I added the Achievements and I only had System.out in place of this.achievement I would get the line printed twice. *Edit* I checked it out and it only printed once. So that is not the problem.
  8. Forge{7.7.2.682} [Minecraft Forge] (coremods) Unloaded->Constructed XplosionCore{1.0.0} [Xplosion Core] (XplosionCore.zip) Unloaded->Errored Are you putting it in the coremods folder or in mods folder??
  9. I get the Same Crash. I did notice though in the Crash log is PixelGoal{0.1} [Pixelmon Goals] (PixelGoal.zip) Unloaded->Constructed->Pre-initialized->Errored
  10. Do you think that might fix my problem? @PreInit public void preInit(FMLPreInitializationEvent event){ ModMetadata data = event.getModMetadata(); data.name = "Pixelmon Goals"; data.version = "0.1"; data.url = "www.pixelmonmod.com"; data.authorList = Arrays.asList(new String[] {"Xwaffle"}); data.description = "This is a Side-Mod for the Pixelmon mod. It adds achievements for the mod."; data.logoFile = "logo file .png"; data.credits = "Thanks a bunch to alexbegt for helping me!!"; data.autogenerated = false; //Ignore me, just keep me as false new AchievementHelper(); } Is that good? Or should I change the public void preInit(FMLPreInitializationEvent event) to public void load?
  11. What do you mean? I have a Mod base class that activates the class @Init Public load() new AchievementHelper(); If that is what you mean.
  12. Sorry I did not know. I just really want this fixed.
  13. Alright, i've made an Achievement mod that adds Achievements to the mod Pixelmon (pixelmonmod.com). The mod works perfectly fine and runs flawless the first run Achievements are unlocked and work fine. If I close Minecraft and reopen it though I get this crash report. (http://pastebin.com/UYEgCA91) All I know is that if I delete the stats folder in the .minecraft folder I am able to play, but it deletes all the Achievements. I had the thought that maybe the Achievements are trying to register again? Here is the code so you guys can take a look. (http://pastebin.com/ZZvDHf5P) I'd be greatly appreciated if I could get rid of this stupid crash.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.