• 0

    posted a message on [Freebuild][No Whitelist][WorldEdit] MinMax Gaming Creative

    Posting on behalf of Kitty_KitCat

    Posted in: PC Servers
  • 0

    posted a message on [Freebuild][No Whitelist][WorldEdit] MinMax Gaming Creative

    IGN: Lubdan

    Posted in: PC Servers
  • 0

    posted a message on Slightly-More-Realistic Minecraft Experience Mod
    I really like the idea of this mod, as it's something I've wanted into minecraft myself for a long, long time. But the problem with it is, I haven't the capability to do any of the food/thirst overhauls you speak of. The tool and rock part is within my capability and I could start working on that later today.

    And also I have a few suggestions for the new tool tiers. Such as, Silver, Platinum, Titanium, and Copper. Ores needed to spawn would be Silver, Titanium, Platinum, Copper, and Tin at that point, for the bronze of course.



    Another thing I think should be added into this is the addition of more AI to minecraft's mobs. Such as cows are more like bison in the fact that they travel in large groups, but are rarely spotted. And pigs are more like boars and try to attack you. The addition of some fish mobs would be good and you could start to overhaul fishing as well with maybe some hand-fishing and harpoons.



    PM me when you see this, I'll start on the tools right away.
    Posted in: Requests / Ideas For Mods
  • 1

    posted a message on In Need of Development..
    One tutorial series I suggest for modding is MrCrayFish's tutorials over on his youtube channel. He has them for 1.7.10 as well as 1.8 now. And they're extremely easy to follow. He even has some good Java tutorials in the description of the 1.7.10 series. It helped me get started in a matter of 2 nights.
    Posted in: Modification Development
  • 0

    posted a message on Problems Creating Custom Stairs [RESOLVED]
    Thanks a ton! That fixed the issue!
    Posted in: Modification Development
  • 0

    posted a message on Problems Creating Custom Stairs [RESOLVED]
    Now, I've looked at some minecraft Forge tutorials on how to make stairs. And basically it just tells me to change the "extends Block" in the public Class line to "extends BlockStairs"

    I tried this and I get an error under the "super(material)" and there's no guided fix for it, I've tried to find a solution on the forge website, but nothing shows up.

    The Error I get when mousing over it is "The constructor BlockStairs(Material) is undefined"
    I don't know what this means.


    Here's the code:
    package vitriodragon.LoTRMod;

    import net.minecraft.block.Block;
    import net.minecraft.block.BlockStairs;
    import net.minecraft.block.material.Material;
    import net.minecraft.creativetab.CreativeTabs;

    public class bricksDwarvenStairs extends BlockStairs
    {

    protected bricksDwarvenStairs(Material material) {
    super(material);
    this.setHardness(1.5F);
    this.setHarvestLevel("pickaxe", 1);
    }
    }

    Posted in: Modification Development
  • 0

    posted a message on Minecraft Eclipse Test Environment Crash [RESOLVED]
    Thankyou! That was precisely it, I was using double quotes on one of my Recipe registries where it should have been single!
    Posted in: Modification Development
  • 0

    posted a message on Minecraft Eclipse Test Environment Crash [RESOLVED]
    I fixed the OreMithril problem. I didn't set a material to it. The crash still isn't fixed, though.

    Here's the new crash report.


    ---- Minecraft Crash Report ----
    // Surprise! Haha. Well, this is awkward.

    Time: 2/15/15 3:36 PM
    Description: Initializing game

    java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Character
    at net.minecraft.item.crafting.CraftingManager.func_92103_a(CraftingManager.java:203)
    at cpw.mods.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:244)
    at cpw.mods.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:239)
    at vitriodragon.LoTRMod.LoTRMod.init(LoTRMod.java:95)
    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:513)
    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:208)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187)
    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:118)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:541)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:867)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    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)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- Head --
    Stacktrace:
    at net.minecraft.item.crafting.CraftingManager.func_92103_a(CraftingManager.java:203)
    at cpw.mods.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:244)
    at cpw.mods.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:239)
    at vitriodragon.LoTRMod.LoTRMod.init(LoTRMod.java:95)
    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:513)
    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:208)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187)
    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:118)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:541)

    -- Initialization --
    Details:
    Stacktrace:
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:867)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    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)

    Posted in: Modification Development
  • 0

    posted a message on Minecraft Eclipse Test Environment Crash [RESOLVED]
    So what exactly do I have to do to fix that?
    I found it, and removed the null but it still crashes and now the whole "new OreMithril().setBlockName("OreMithril")" part is underlined in red on the code.
    Posted in: Modification Development
  • 0

    posted a message on Minecraft Eclipse Test Environment Crash [RESOLVED]
    If the issue is the OreMithril class, it really doesn't consist of anything. The code for it is as follows:




    package vitriodragon.LoTRMod;

    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;

    public class OreMithril extends Block {

    protected OreMithril(Material material) {
    super(material);
    }

    }

    Posted in: Modification Development
  • 0

    posted a message on Minecraft Eclipse Test Environment Crash [RESOLVED]
    I've recently just started getting into modding, and have had no issues up until I tried to generate an ores in the overworld. It didn't start to have errors until I added in the blocks for ores. Any help would be a great help! :lol:



    Crash Report

    ________________________________________________________________________________________________________________

    ---- Minecraft Crash Report ----
    // Why is it breaking :(

    Time: 2/15/15 3:06 PM
    Description: Initializing game

    java.lang.NullPointerException: Initializing game
    at net.minecraft.block.Block.<init>(Block.java:421)
    at vitriodragon.LoTRMod.OreMithril.<init>(OreMithril.java:9)
    at vitriodragon.LoTRMod.LoTRMod.preInit(LoTRMod.java:66)
    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:513)
    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:208)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187)
    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:118)
    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513)
    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480)
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:867)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    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)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- Head --
    Stacktrace:
    at net.minecraft.block.Block.<init>(Block.java:421)
    at vitriodragon.LoTRMod.OreMithril.<init>(OreMithril.java:9)
    at vitriodragon.LoTRMod.LoTRMod.preInit(LoTRMod.java:66)
    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:513)
    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:208)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187)
    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:118)
    at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:513)
    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:239)
    at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480)

    -- Initialization --
    Details:
    Stacktrace:
    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:867)
    at net.minecraft.client.main.Main.main(SourceFile:148)
    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)
    Posted in: Modification Development
  • 0

    posted a message on Pure Survival Server, No PvP
    1. What is your in game name

    VitrioDragon


    2. How old are you?

    16


    3. How long have you been playing Minecraft?

    Since Alpha


    4. Have you played on a Pure Survival server before?

    Yes


    5. Why would you like to play on this server?

    Looking for a small survival server.

    6. Do you know someone already on the server? If so, what is their username?

    No I do not.


    7. What does SOTF stand for?

    Survival Of The Fittest
    Posted in: PC Servers
  • 0

    posted a message on Vanilla Survival [mcMMO] [Whitelist]
    Hello. This is VitrioDragon, and me and my friends have started up a small, 23 slot survival server. All you need to do to join up is reply to this topic with your IGN, and Age. I will check the forum often and add you to the whitelist if you post.

    IP: 108.170.41.178:43328
    Plugins: CoreProtect, mcMMO, WorldEdit, WorldGuard, iDisguise, BasicCraft, PermissionsEx, Essentials,
    Staff: VitrioDragon, Pablo22R (Owners)
    Chubz72, magiccookie22 (Admins)
    VampNeko, Thorgrom, Gray_Hawk58 (Moderators)
    Posted in: PC Servers
  • 0

    posted a message on [1.7.2] UKZilla | No Whitelist | Freebuild Creative | Multiverse | WorldEdit
    Posting for my buddy BruT4Lluigi, this is warn. >.>
    Posted in: PC Servers
  • 0

    posted a message on Phoscraft- Needing Builders!
    Sup Orgy, You remember me, It's warndoom7. :D I'm a pretty swish builder, you know that. How about you let me on there? :D
    Posted in: Server Recruitment
  • To post a comment, please .