Jump to content

TheMurkyModder

Members
  • Posts

    18
  • Joined

  • Last visited

Everything posted by TheMurkyModder

  1. Oh my god, I totally forgot about that! Thanks for asking!
  2. Here is the code of the generator. There are no errors at all package worldgen; import java.util.Random; import worldgen.feature.StructureRuinsmall; import net.minecraft.world.World; import net.minecraft.world.biome.BiomeGenBase; import net.minecraft.world.chunk.IChunkProvider; import cpw.mods.fml.common.IWorldGenerator; public class worldgen implements IWorldGenerator { @Override public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) { switch(world.provider.dimensionId){ case 0: generateSurface(world, random, chunkX*16, chunkZ*16); } } private void generateSurface(World world, Random random, int x, int z) { BiomeGenBase biome = world.getWorldChunkManager().getBiomeGenAt(x, z); if ((biome == BiomeGenBase.plains)){ for (int a = 0; a < 1; a++){ int i = x + random.nextInt(256); int k = z + random.nextInt(256); int j = world.getHeightValue(i, k); new StructureRuinsmall().generate(world, random, i, k, j); } } } }
  3. I was wondering right now, I'm running 1.7.2. How would I update to forge 1.7.10?
  4. What is wrong, why cant i launch it? [16:03:27] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [16:03:27] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [16:03:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [16:03:27] [main/INFO] [FML]: Forge Mod Loader version 7.2.211.1121 for Minecraft 1.7.2 loading [16:03:27] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre1.8.0_25 [16:03:27] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [16:03:27] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:03:27] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [16:03:27] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:03:27] [main/ERROR] [LaunchWrapper]: Unable to launch java.util.ConcurrentModificationException at java.util.ArrayList$Itr.checkForComodification(Unknown Source) ~[?:1.8.0_25] at java.util.ArrayList$Itr.remove(Unknown Source) ~[?:1.8.0_25] at net.minecraft.launchwrapper.Launch.launch(Launch.java:117) [launchwrapper-1.9.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?] Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
  5. Oh thanks, I did not know that. Thanks for the info
  6. I don't get why I cannot import networkmod? http://gyazo.com/db3847f2a677d2dec1a09ef5408f29b2 package murky; import cpw.mods.fml.common.Mod; @NetworkMod(clientSideRequired = true, serverSideRequired = false) @Mod(modid = "MoreMobs", name = "More Mobs Mod", version = "1.0 Alpha") public class moremobs { public moremobs(){ } }
  7. I have no idea I did look up some tutorials on how to build the gradlew before this. I did exactly what they said Heres what the jars name come outs as http://gyazo.com/3e9a13b1e51e00baec8962255a9af86d Here is the build file http://gyazo.com/1b98fe9a4ee9af3b8718f3cd26fe35b8
  8. What is wrong with my ore generator, i found nothing wrong with it. It just wont generate package murky; import java.util.Random; import scala.tools.nsc.MainClass; import net.minecraft.world.World; import net.minecraft.world.chunk.IChunkProvider; import net.minecraft.world.gen.feature.WorldGenMinable; import cpw.mods.fml.common.IWorldGenerator; public class oregen implements IWorldGenerator { @Override public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) { switch(world.provider.dimensionId){ case 1: generateInOverworld(world, random, chunkX*16, chunkZ*16); break; } if (world.provider.dimensionId == 0){ } } private void generateInOverworld(World world, Random random, int x, int z) { for (int i = 0; i < 35; i++){ int chunkX = x + random.nextInt(16); int chunkY = random.nextInt(256); int chunkZ = z + random.nextInt(16); (new WorldGenMinable(BaseClass.blockCopperore, 4)).generate(world, random, chunkX, chunkY, chunkZ); } } }
  9. Sorry, I'm just trying to learn as I follow a tutorial. I did not know what I did wrong as I followed the tutorial. and this is the best place to see whats wrong with it. As I said, I'm sorry. I will come back when I learned more java.
  10. What is wrong with this line now. I'm so confused with this line. copperPickaxe = new ItemCopperPickaxe(copperToolMaterial) http://gyazo.com/f7e2c09c43a7f8712486d71ac2e2a561
  11. Here is updated code public static CreativeTabs tabMoreores = new CreativeTabs("tabMoreores");{
  12. What is wrong with this code? public static CreativeTabs tabMoreores = new CreativeTabs();{ Here is the error http://gyazo.com/80058181d0e912c27cd7c01d8fbaaf2c
  13. Here is the error when I hover over it. http://gyazo.com/c4eae2ba9584deab3b64037f14f342e8
  14. Still learning basic java, I'm here to learn from my mistakes! What is wrong with this line, its saying its a error itemWand = new ItemWand().setUnlocalizedName("ItemWand"); Thank you guys, if you find the problem!
  15. What is wrong with this, I'm getting errors about the FML. I'm fairly new to Java and hoping to learn more ---------------------------------------------------------------------------------------------------------------- package murky; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw @Mod(modid = "mm", name = "More Ores Mod", version = "1.0") public class BaseClass { @EventHandler public void preInit(FMLPreInitialization event) { } @EventHandler public void init(FMLInitializationEvent) } -------------------------------------------------------------------------------
  16. That fixed it, Thanks guys!
  17. Still did not work
  18. Nov 17, 2014 10:21:56 PM net.minecraft.launchwrapper.LogWrapper log INFO: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker Nov 17, 2014 10:21:56 PM net.minecraft.launchwrapper.LogWrapper log INFO: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker Nov 17, 2014 10:21:56 PM net.minecraft.launchwrapper.LogWrapper log INFO: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.4.49.965 for Minecraft 1.6.4 loading 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Java is Java HotSpot 64-Bit Server VM, version 1.7.0_71, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre7 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker 2014-11-17 22:21:56 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-11-17 22:21:56 [iNFO] [sTDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg 2014-11-17 22:21:56 [sEVERE] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work! 2014-11-17 22:21:57 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper 2014-11-17 22:21:57 [iNFO] [sTDOUT] Loaded 110 rules from AccessTransformer config file forge_at.cfg 2014-11-17 22:21:57 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker 2014-11-17 22:21:57 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main} 2014-11-17 22:21:57 [iNFO] [Minecraft-Client] Setting user: Player218 2014-11-17 22:21:58 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0 2014-11-17 22:21:58 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default 2014-11-17 22:21:59 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2014-11-17 22:21:59 [iNFO] [sTDOUT] MinecraftForge v9.11.1.965 Initialized 2014-11-17 22:21:59 [iNFO] [ForgeModLoader] MinecraftForge v9.11.1.965 Initialized 2014-11-17 22:21:59 [iNFO] [sTDOUT] Replaced 111 ore recipies 2014-11-17 22:21:59 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2014-11-17 22:21:59 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\sysak_000\Desktop\Forge\forge\mcp\jars\config\logging.properties 2014-11-17 22:21:59 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2014-11-17 22:21:59 [iNFO] [ForgeModLoader] Searching C:\Users\sysak_000\Desktop\Forge\forge\mcp\jars\mods for mods 2014-11-17 22:21:59 [sEVERE] [ForgeModLoader] The mcmod.info file in bin cannot be parsed as valid JSON. It will be ignored argo.saj.InvalidSyntaxException: At line 11, column 17: Expected object identifier to be followed by : but got [T]. at argo.saj.SajParser.aFieldToken(SajParser.java:135) at argo.saj.SajParser.objectString(SajParser.java:114) at argo.saj.SajParser.aJsonValue(SajParser.java:194) at argo.saj.SajParser.arrayString(SajParser.java:79) at argo.saj.SajParser.parse(SajParser.java:58) at argo.jdom.JdomParser.parse(JdomParser.java:36) at cpw.mods.fml.common.MetadataCollection.from(MetadataCollection.java:44) at cpw.mods.fml.common.discovery.DirectoryDiscoverer.exploreFileSystem(DirectoryDiscoverer.java:68) at cpw.mods.fml.common.discovery.DirectoryDiscoverer.discover(DirectoryDiscoverer.java:52) at cpw.mods.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) at cpw.mods.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) at cpw.mods.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:137) at cpw.mods.fml.common.Loader.identifyMods(Loader.java:353) at cpw.mods.fml.common.Loader.loadMods(Loader.java:484) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:183) at net.minecraft.client.Minecraft.startGame(Minecraft.java:473) at net.minecraft.client.Minecraft.run(Minecraft.java:808) at net.minecraft.client.main.Main.main(Main.java:93) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:131) at net.minecraft.launchwrapper.Launch.main(Launch.java:27) 2014-11-17 22:22:00 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2014-11-17 22:22:00 [iNFO] [mcp] Activating mod mcp 2014-11-17 22:22:00 [iNFO] [FML] Activating mod FML 2014-11-17 22:22:00 [iNFO] [Forge] Activating mod Forge 2014-11-17 22:22:00 [iNFO] [MoreOresMurkyModder] Activating mod MoreOresMurkyModder 2014-11-17 22:22:00 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well 2014-11-17 22:22:00 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well 2014-11-17 22:22:00 [WARNING] [MoreOres Mod] Mod MoreOres Mod is missing a pack.mcmeta file, things may not work well 2014-11-17 22:22:00 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:MoreOres Mod 2014-11-17 22:22:00 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2014-11-17 22:22:00 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2014-11-17 22:22:00 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2014-11-17 22:22:01 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods 2014-11-17 22:22:01 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well 2014-11-17 22:22:01 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well 2014-11-17 22:22:01 [WARNING] [MoreOres Mod] Mod MoreOres Mod is missing a pack.mcmeta file, things may not work well 2014-11-17 22:22:01 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:MoreOres Mod 2014-11-17 22:22:01 [iNFO] [sTDOUT] 2014-11-17 22:22:01 [iNFO] [sTDOUT] Starting up SoundSystem... 2014-11-17 22:22:01 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2014-11-17 22:22:01 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2014-11-17 22:22:01 [iNFO] [sTDOUT] OpenAL initialized. 2014-11-17 22:22:01 [sEVERE] [Minecraft-Client] Realms: Server not available! 2014-11-17 22:22:02 [iNFO] [sTDOUT] 2014-11-17 22:22:04 [iNFO] [Minecraft-Client] Stopping! 2014-11-17 22:22:04 [iNFO] [sTDOUT] 2014-11-17 22:22:04 [iNFO] [sTDOUT] SoundSystem shutting down... 2014-11-17 22:22:04 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2014-11-17 22:22:04 [iNFO] [sTDOUT] Those are the logs Also here is my mcmod.info [{ "modid": "MoreOresMurkyModder", "name": "More Ores", "description": "This is a mod that will add more ore and tools into your game!" "version": "V1.0", "mcversion": "1.6.4", "url": "", "updateUrl": "", "authorList": [ "Nicholas"], "credits": "Forge and Minecraft", "logoFile": "/src/moreores/logo.png", "screenshots": [], "parent": "", "requiredMods": [ "Forge" ], "dependencies": [], "dependants": [], "useDependencyInformation": true }] Help me please, Thanks - Nicholas
×
×
  • Create New...

Important Information

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