• 0

    posted a message on Hbm nuclear tech hidden catalog riddle?

    I managed to get the achievement, and I was wondering if anybody had solved the riddle and could give me hints. if the riddles questions are references to TV shows Im not going to get it.

    Im using 1.7.10 if that helps


    Thanks

    Posted in: Mods Discussion
  • 0

    posted a message on How to make zombies not die during the day?

    you could build a large packed ice plane above the area you want to use or use slabs.

    Posted in: Creative Mode
  • 0

    posted a message on Radio block or record.

    ok, thanks anyway!

    Posted in: Modification Development
  • 0

    posted a message on Radio block or record.

    1.7.10, I don't like the newer versions. I'm also using the old launcher because its easier for me to use.

    Posted in: Modification Development
  • 0

    posted a message on Radio block or record.

    I was wondering if it was possible to make a block so that when it's clicked on it loops a recording until it is clicked on again. If so, how could i do that?

    I also was wondering how i could make a custom music disk.

    Thanks

    Posted in: Modification Development
  • 0

    posted a message on java.lang.NullPointerException

    Huh, well thank you for your help!

    Posted in: Modification Development
  • 0

    posted a message on java.lang.NullPointerException

    Thanks! That worked! Why would that cause it to crash?

    Posted in: Modification Development
  • 0

    posted a message on Minecraft 1.16 Update Opinion Thread

    I still think 1.7.10 is the best, its got all the base Minecraft features without any thing crazy like bees. The new versions look like a modded world with a texture pack. (except for slime blocks, those are cool)

    When 1.8.0 first came out I was mad because my skin was stuck on Alex (we played offline) and i didn't know how to change it. I also like the old launcher better, its easier to debug and use mods.

    Posted in: Recent Updates and Snapshots
  • 0

    posted a message on What have you done recently?

    I messed with Minecraft in blender:


    Posted in: Survival Mode
  • 0

    posted a message on java.lang.NullPointerException

    bump

    Posted in: Modification Development
  • 0

    posted a message on java.lang.NullPointerException
    package com.jett.MSM; import net.minecraft.block.Block;
    import net.minecraft.enchantment.Enchantment;
    import net.minecraft.init.Blocks;
    import net.minecraft.init.Items;
    import net.minecraft.item.Item;
    import net.minecraft.item.ItemStack;
    import cpw.mods.fml.common.Mod;
    import cpw.mods.fml.common.Mod.EventHandler;
    import cpw.mods.fml.common.event.FMLInitializationEvent;
    import cpw.mods.fml.common.registry.GameRegistry; @Mod(modid = MSM.MODID, version = MSM.VERSION)
    public class MSM
    {
    public static final String MODID = "MSM";
    public static final String VERSION = "1.0";
    public static Block HardenedStone;
    public static Block HardenedStoneBrick;
    public static Block HardenedCrackedStoneBrick;

    @EventHandler
    public void preInit(FMLInitializationEvent event)
    {
    ItemKey key = new ItemKey();

    GameRegistry.registerItem(key, "key");

    setHardenedStone(new BlockHardenedStone());

    GameRegistry.registerBlock(getHardenedStone(), "Hardened Stone");

    setHardenedStoneBrick(new BlockHardenedStoneBrick());

    GameRegistry.registerBlock(getHardenedStoneBrick(), "Hardened Stone Brick");

    setHardenedCrackedStoneBrick(new BlockHardenedCrackedStoneBrick());

    GameRegistry.registerBlock(getHardenedCrackedStoneBrick(), "Hardened Cracked Stone Brick");
    }

    @EventHandler
    public void init(FMLInitializationEvent event)
    {
    GameRegistry.addRecipe(new ItemStack(Items.apple),
    "XXX",
    "XXX",
    "XXX",
    'X', Blocks.leaves
    );
    GameRegistry.addShapelessRecipe(new ItemStack(Items.dye, 2, 1),
    Items.redstone, new ItemStack(Items.dye, 1, 1)
    );
    GameRegistry.addShapelessRecipe(new ItemStack(Items.flint, 9, 1),
    Blocks.gravel, Items.wooden_shovel
    );
    GameRegistry.addSmelting(Items.lava_bucket, new ItemStack(Blocks.netherrack, 1), 0.1F);

    GameRegistry.addShapelessRecipe(new ItemStack(Blocks.grass, 1, 1),
    Blocks.dirt, Blocks.vine
    );
    GameRegistry.addSmelting(Blocks.stone, new ItemStack(MSM.getHardenedStone(), 1), 0.5F);

    GameRegistry.addRecipe(new ItemStack(MSM.getHardenedStoneBrick()),
    "XX",
    "XX",
    'X', MSM.getHardenedStone()
    );
    GameRegistry.addSmelting(MSM.getHardenedStoneBrick(), new ItemStack(MSM.getHardenedCrackedStoneBrick(), 1), 0.5F);



    } public static Block getHardenedStoneBrick() {
    return HardenedStoneBrick;
    } public static void setHardenedStoneBrick(Block hardenedStoneBrick) {
    HardenedStoneBrick = hardenedStoneBrick;
    } public static Block getHardenedCrackedStoneBrick() {
    return HardenedCrackedStoneBrick;
    } public static void setHardenedCrackedStoneBrick(Block hardenedCrackedStoneBrick) {
    HardenedCrackedStoneBrick = hardenedCrackedStoneBrick;
    } public static Block getHardenedStone() {
    return HardenedStone;
    } public static void setHardenedStone(Block hardenedStone) {
    HardenedStone = hardenedStone;
    }
    }
    Posted in: Modification Development
  • 0

    posted a message on java.lang.NullPointerException
    Now it give's me this:
    ---- Minecraft Crash Report ----
    // I bet Cylons wouldn't have this problem. Time: 9/16/20 2:09 PM
    Description: Initializing game java.lang.NullPointerException: Initializing game
    at net.minecraft.item.crafting.CraftingManager.addRecipe(CraftingManager.java:236)
    at cpw.mods.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:250)
    at cpw.mods.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:245)
    at com.jett.MSM.MSM.init(MSM.java:65)
    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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532)
    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.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190)
    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.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:737)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:311)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:597)
    at net.minecraft.client.Minecraft.run(Minecraft.java:942)
    at net.minecraft.client.main.Main.main(Main.java:164)
    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:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
    at GradleStart.main(Unknown Source)
    A detailed walkthrough of the error, its code path and all known details is as follows:
    --------------------------------------------------------------------------------------- -- Head --
    Stacktrace:
    at net.minecraft.item.crafting.CraftingManager.addRecipe(CraftingManager.java:236)
    at cpw.mods.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:250)
    at cpw.mods.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:245)
    at com.jett.MSM.MSM.init(MSM.java:65)
    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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532)
    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.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190)
    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.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:737)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:311)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:597) -- Initialization --
    Details:
    Stacktrace:
    at net.minecraft.client.Minecraft.run(Minecraft.java:942)
    at net.minecraft.client.main.Main.main(Main.java:164)
    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:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
    at GradleStart.main(Unknown Source) -- System Details --
    Details:
    Minecraft Version: 1.7.10
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_261, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 693543464 bytes (661 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 4 mods loaded, 4 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UCHI mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
    UCHI FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1614-1.7.10.jar)
    UCHI Forge{10.13.4.1614} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1614-1.7.10.jar)
    UCHE MSM{1.0} [More Stuff Mod] (bin)
    GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.6.13587 Compatibility Profile Context 20.4.2 26.20.15029.27017' Renderer: 'Radeon RX 580 Series'
    Launched Version: 1.7.10
    LWJGL: 2.9.1
    OpenGL: Radeon RX 580 Series GL version 4.6.13587 Compatibility Profile Context 20.4.2 26.20.15029.27017, ATI Technologies Inc.
    GL Caps: Using GL 1.3 multitexturing.
    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
    Anisotropic filtering is supported and maximum anisotropy is 16.
    Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: []
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Anisotropic Filtering: Off (1)
    Posted in: Modification Development
  • 0

    posted a message on java.lang.NullPointerException
    Like this?
    package com.jett.MSM; import net.minecraft.block.Block;
    import net.minecraft.enchantment.Enchantment;
    import net.minecraft.init.Blocks;
    import net.minecraft.init.Items;
    import net.minecraft.item.Item;
    import net.minecraft.item.ItemStack;
    import cpw.mods.fml.common.Mod;
    import cpw.mods.fml.common.Mod.EventHandler;
    import cpw.mods.fml.common.event.FMLInitializationEvent;
    import cpw.mods.fml.common.registry.GameRegistry; @Mod(modid = MSM.MODID, version = MSM.VERSION)
    public class MSM
    {
    public static final String MODID = "MSM";
    public static final String VERSION = "1.0";
    private static Block HardenedStone;
    public static Block HardenedStoneBrick;
    public static Block HardenedCrackedStoneBrick;

    @EventHandler
    public void preInit(FMLInitializationEvent event)
    {
    ItemKey key = new ItemKey();

    GameRegistry.registerItem(key, "key");

    setHardenedStone(new BlockHardenedStone());

    GameRegistry.registerBlock(getHardenedStone(), "Hardened Stone");

    setHardenedStoneBrick(new BlockHardenedStoneBrick());

    GameRegistry.registerBlock(getHardenedStoneBrick(), "Hardened Stone Brick");

    setHardenedCrackedStoneBrick(new BlockHardenedCrackedStoneBrick());

    GameRegistry.registerBlock(getHardenedCrackedStoneBrick(), "Hardened Cracked Stone Brick");
    }

    @EventHandler
    public void init(FMLInitializationEvent event)
    {
    GameRegistry.addRecipe(new ItemStack(Items.apple),
    "XXX",
    "XXX",
    "XXX",
    'X', Blocks.leaves
    );
    GameRegistry.addShapelessRecipe(new ItemStack(Items.dye, 2, 1),
    Items.redstone, new ItemStack(Items.dye, 1, 1)
    );
    GameRegistry.addShapelessRecipe(new ItemStack(Items.flint, 9, 1),
    Blocks.gravel, Items.wooden_shovel
    );
    GameRegistry.addSmelting(Items.lava_bucket, new ItemStack(Blocks.netherrack, 1), 0.1F);

    GameRegistry.addShapelessRecipe(new ItemStack(Blocks.grass, 1, 1),
    Blocks.dirt, Blocks.vine
    );
    GameRegistry.addSmelting(Blocks.stone, new ItemStack(MSM.getHardenedStone(), 1), 0.5F);

    GameRegistry.addRecipe(new ItemStack(MSM.getHardenedStoneBrick()),
    "XX",
    "XX",
    'X', MSM.getHardenedStone()
    );
    GameRegistry.addSmelting(MSM.getHardenedStoneBrick(), new ItemStack(MSM.getHardenedCrackedStoneBrick(), 1), 0.5F);



    } public static Block getHardenedStoneBrick() {
    return HardenedStoneBrick;
    } public static void setHardenedStoneBrick(Block hardenedStoneBrick) {
    HardenedStoneBrick = hardenedStoneBrick;
    } public static Block getHardenedCrackedStoneBrick() {
    return HardenedCrackedStoneBrick;
    } public static void setHardenedCrackedStoneBrick(Block hardenedCrackedStoneBrick) {
    HardenedCrackedStoneBrick = hardenedCrackedStoneBrick;
    } public static Block getHardenedStone() {
    return HardenedStone;
    } public static void setHardenedStone(Block hardenedStone) {
    HardenedStone = hardenedStone;
    }
    }
    Posted in: Modification Development
  • 0

    posted a message on java.lang.NullPointerException

    I also had Block in front of GameRegistry.registerBlock(HardenedStoneBrick, "Hardened Stone Brick");.

    Posted in: Modification Development
  • To post a comment, please .