Jump to content

BassPro241

Members
  • Posts

    6
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    It's a MAN!

BassPro241's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Introduction: Welcome to Six Core Mods! We are here to bring a new mod to the game of Minecraft. I have seen a couple of these mods around the forum before, but they all crashed and burned due to poor implementation. One reason why these others crashed and burned was for one main reason: guns. We are not here to bring guns into the game. We are here to bring other mechanics of the game such as the elemental effects, creatures, leveling system, etc. to Minecraft. The Idea: We have many ideas to bring to this mod, all of which pertain to Borderlands 2 in some way or another. First off, we will be bringing each of the elemental effects in Borderlands 2 into Minecraft. This includes corrosion, shock, and slag, as there is already code there for us in Vanilla Minecraft to work with fire and explosive. We are planning to bring many, if not all, of the creatures of Pandora into this as well. A list will be included later on in the thread. The dimension of Pandora will be added with biomes pertaining to the many locations in the game. I have many more ideas for later on if this mod turns out to be a success, but those will not be disclosed at the moment. *Currently taking ideas for new Pandoran terrain and items* The Team:
  2. I would like to get my mod working on a server today to test with some people, so if anyone could help, that would be great.
  3. I think I may have found the problem. public static final Item rubyHelmet = new ItemGemHelmet(5050, EnumArmorMaterialGem, ModLoader.addArmor("ruby"), 0).setItemName("helmetRuby").setIconIndex(12); public static final Item rubyPlate = new ItemGemPlate(5051, EnumArmorMaterialGem, ModLoader.addArmor("ruby"), 1).setItemName("plateRuby").setIconIndex(28); public static final Item rubyLegs = new ItemGemLegs(5052, EnumArmorMaterialGem, ModLoader.addArmor("ruby"), 2).setItemName("legsRuby").setIconIndex(44); public static final Item rubyBoots = new ItemGemBoots(5053, EnumArmorMaterialGem, ModLoader.addArmor("ruby"), 3).setItemName("bootsRuby").setIconIndex(60); public static final Item onyxHelmet = new ItemOnyxHelmet(5054, EnumArmorMaterialOnyx, ModLoader.addArmor("onyx"), 0).setItemName("helmetOnyx").setIconIndex(13); public static final Item onyxPlate = new ItemOnyxPlate(5055, EnumArmorMaterialOnyx, ModLoader.addArmor("onyx"), 1).setItemName("plateOnyx").setIconIndex(29); public static final Item onyxLegs = new ItemOnyxLegs(5056, EnumArmorMaterialOnyx, ModLoader.addArmor("onyx"), 2).setItemName("legsOnyx").setIconIndex(45); public static final Item onyxBoots = new ItemOnyxBoots(5057, EnumArmorMaterialOnyx, ModLoader.addArmor("onyx"), 3).setItemName("bootsOnyx").setIconIndex(61); public static final Item sapphireHelmet = new ItemSapphireHelmet(5058, EnumArmorMaterialGem, ModLoader.addArmor("sapphire"), 0).setItemName("helmetSapphire").setIconIndex(14); public static final Item sapphirePlate = new ItemSapphirePlate(5059, EnumArmorMaterialGem, ModLoader.addArmor("sapphire"), 1).setItemName("plateSapphire").setIconIndex(30); public static final Item sapphireLegs = new ItemSapphireLegs(5060, EnumArmorMaterialGem, ModLoader.addArmor("sapphire"), 2).setItemName("legsSapphire").setIconIndex(46); public static final Item sapphireBoots = new ItemSapphireBoots(5061, EnumArmorMaterialGem, ModLoader.addArmor("sapphire"), 3).setItemName("bootsSapphire").setIconIndex(62); I need to replace those ModLoader methods with Forge methods, but I have no idea what the Forge methods are for that.
  4. I have already recompiled and reobfuscated the mod and put the files in their respective locations, and I can't seem to get my server running. I end up getting this error when I start it up. ---- Minecraft Crash Report ---- // Ooh. Shiny. Time: 10/13/12 12:30 AM Description: Exception in server tick loop java.lang.NoSuchMethodError: ModLoader.addArmor(Ljava/lang/String;)I at basspro.bassmod.common.BassProMod.<clinit>(BassProMod.java:103) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:394) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:124) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300) at com.google.common.eventbus.EventBus.post(EventBus.java:268) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81) at cpw.mods.fml.common.Loader.loadMods(Loader.java:458) at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:80) at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:329) at ft.b(DedicatedServer.java:49) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:431) at ep.run(SourceFile:539) Relevant Details: - Minecraft Version: 1.3.2 - Operating System: Windows 7 (amd64) version 6.1 - Java Version: 1.6.0_35, Sun Microsystems Inc. - Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Sun Microsystems Inc. - Memory: 971100960 bytes (926 MB) / 1029046272 bytes (981 MB) up to 1908932608 bytes (1820 MB) - JVM Flags: 2 total; -Xmx2048M -Xms1024M - FML: ~ERROR~ NullPointerException: null - Is Modded: Definitely; 'forge,fml' - Profiler Position: N/A (disabled) - Type: Dedicated Server What could be causing it to do this?
  5. If you couldn't tell, I would like to make it so that a player can emit light. I would like to make it so that when one of the items in my mod is eaten, the player will emit light for a short period of time. If anyone knows how to do this and can help me, it would be greatly appreciated. Thanks.
×
×
  • Create New...

Important Information

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