JavaBuckets's Avatar
Member
Level 80 Elite Modder
1,060

Forum Posts

21 - 40 of 96

    JavaBuckets
    01/02/2014 4:25 pm
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    well as bmanrules said you cant enchant unless it extends ItemTool in some way. As for the damage, as of 1.6 they now use ItemAttributes, so you could copy the code from the ItemSword at the bottom with that, and change whatever you want >.<

    But use bmanrules solution, what i wouldve done too xD
    1
    JavaBuckets
    12/22/2013 9:00 pm
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Original text:

    "Casper"

    ...35 translations later, Bing gives us:

    "God and the spirit of competition."

    WTF !? while translating to other languages the first time it went wrong was here:

    Back to English: Casper
    To Chinese Simplified: 鬼马小精灵
    Back to English: Ghost horse race of Elves

    WTF china xD ?
    1
    JavaBuckets
    12/22/2013 8:51 pm
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Not sure if anyone has worked on their mod but the final release date has been moved to the 31st/1st because, well... some of us needs more time :S xD please reply if you have even made anything ;S
    1
    JavaBuckets
    12/22/2013 8:49 pm
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    deadrecon98
    DarkEyeDragonOk so i'm working on an update for my Better Gui + mod but its not really working out...

    Well it was untill i had to finish it off.
    So i created my mod and changed some code here and there to be compatible with 1.6 but then wen i add the @Mod(modid = "BetterGui") it just crashes. this is what i did:

    @SideOnly(Side.CLIENT)
    @Mod(modid = "BetterGui")
    public class CustomButton extends GuiButton {
    public CustomButton(int i, int j, int k, String s)
    {
    this(i, j, k, 120, 20, s);
    }

    public CustomButton(int i, int j, int k, int l, int i1, String s)
    {
    super(i, j, k, l, i1, s);
    }

    protected int getHoverState(boolean flag)
    {
    byte byte0 = 1;
    if (!enabled)
    {
    byte0 = 0;
    }
    else if (flag)
    {
    byte0 = 2;
    }
    return byte0;
    }

    public void drawButton(Minecraft mc, int mx, int my)
    {
    FontRenderer fontrenderer = mc.fontRenderer;
    boolean flag = mx >= xPosition && my >= yPosition && mx < xPosition + width && my < yPosition + height; //Flag, tells if your mouse is hovering the button
    if (flag)
    { // Hover Action
    drawBorderedRect(xPosition -3, yPosition -1, xPosition +3 + width, yPosition + height +1, 1, 0x90FFFFFF, 0x80000000);
    drawCenteredString(fontrenderer, displayString, xPosition + width / 2, yPosition + (height - 8) / 2, 0x870000);
    }
    else { // Normal
    drawBorderedRect(xPosition, yPosition, xPosition + width, yPosition + height, 1, 0x90FFFFFF, 0x60000000);
    drawCenteredString(fontrenderer, displayString, xPosition + width / 2, yPosition + (height - 8) / 2, 0xFFCCCCCC);
    }
    }

    }


    And this is the errorlog i get:

    ---- Minecraft Crash Report ----
    // You're mean.

    Time: 20/12/13 18:22
    Description: There was a severe problem during mod loading that has caused the game to fail

    cpw.mods.fml.common.LoaderException: java.lang.InstantiationException: bettergui.CustomButton
    at cpw.mods.fml.common.LoadController.transition(LoadController.java:156)
    at cpw.mods.fml.common.Loader.loadMods(Loader.java:521)
    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)
    Caused by: java.lang.InstantiationException: bettergui.CustomButton
    at java.lang.Class.newInstance(Unknown Source)
    at cpw.mods.fml.common.ILanguageAdapter$JavaAdapter.getNewInstance(ILanguageAdapter.java:174)
    at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:518)
    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:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:201)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:181)
    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:74)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
    at com.google.common.eventbus.EventBus.post(EventBus.java:267)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:112)
    at cpw.mods.fml.common.Loader.loadMods(Loader.java:511)
    ... 10 more


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

    -- System Details --
    Details:
    Minecraft Version: 1.6.4
    Operating System: Windows 7 (amd64) version 6.1
    Java Version: 1.7.0_45, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 901455976 bytes (859 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    Suspicious classes: FML and Forge are installed
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v8.11 FML v6.4.45.953 Minecraft Forge 9.11.1.953 4 mods loaded, 4 mods active
    mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed
    FML{6.4.45.953} [Forge Mod Loader] (bin) Unloaded->Constructed
    Forge{9.11.1.953} [Minecraft Forge] (bin) Unloaded->Constructed
    BetterGui{1.0} [BetterGui] (bin) Unloaded->Errored


    ...Why dont you just go check out my tutorials. xD


    Uhmmm... http://www.planetminecraft.com/blog/mod ... craft-14x/ <-- Those tutorials ?because it seems you got nothing whatsoever with GUI's. Besides, you look like another one of those modders who basically does 'basic' stuff (stuff from youtube videos or tutorials) without really doing anything else but that :S mix it all up and you got a mod. No offence but it seems like that to me, tell me if I'm wrong. Anyhow back to the point of this blog: Im currently helping this guy on Skype with working it all up and might add some other cool things to the mod to make it unique xD look forward to his mod, it will make it all look better (as it is now, its already just... ahhh, beautiful xD)
    1
    JavaBuckets
    12/14/2013 9:07 pm
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    * Dramatic music is being played in the background *
    The Plan:
    1. Become a legend
    2. Make a youtube channel
    3. Do stuff
    4. fap a bit...
    5. Do more stuff and fap while doing that
    6. Become famous because of all the stuff (and all the fap D:)
    7. Meet him/her/them and fap with him/her/them xD (probably would just say hi and talk a bit but who knows !? D:)
    1
    JavaBuckets
    12/10/2013 6:05 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    "Sometimes I wonder what it would be like for everything inside me that's denied and unknown to be revealed. But I will never know. I live my life in hiding. my survival depends on it." - Dexter Morgan (My favourite)

    "I've lived in darkness for a long time. My eyes adjusted until the dark became my world and I could see." - Dexter Morgan

    "We all make rules for ourselves. It’s these rules that helps define who we are. So when we break those rules we risk losing ourselves and becoming something unknown." - Dexter Morgan
    1
    JavaBuckets
    12/08/2013 5:11 pm
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Heh - hey Fisk! you're in! let the best man (or fisk in your case) win!
    NOTE TO OTHERS: Fisk is Swedish and means 'Fish'
    1
    JavaBuckets
    12/07/2013 6:09 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Well then you must look forward to the Name changing feature right :3 ?
    1
    JavaBuckets
    12/07/2013 6:08 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    erhm... "how did you FIND" *
    not to be a douche but that's a huge mistake :S

    anyhow I didn't find minecraft I got told from a friend to try out this cool small game, then we played the classic for about 5 days, then more of my friends made an account so we basically neared the classic on a small server called Moleman (don't think it still exists). Then right before Beta (so Alpha obv.) I told my dad to buy the full game and he did xD
    1
    JavaBuckets
    12/06/2013 1:25 pm
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    THE CONTEST BEGAN YESTERDAY! GET CODING AND GET TEXTURIN! YOU WILL NEED IT XD! WE MIGHT DISCUSS SOME PARTNERSHIP WITH THE WINNER (Unless its Thom who wins of course -.-) ALSO WE WILL NOT GIVE THOM ANY HELP AT ALL! THE JUDGES ARE NO ONE FROM JAVABUCKETS SO ITS A FAIR FIGHT!
    1
    JavaBuckets
    12/03/2013 2:04 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    just selected the last judge before you're not in.
    1
    JavaBuckets
    12/03/2013 2:02 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    last judge for the contest
    1
    JavaBuckets
    12/03/2013 1:58 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    modder right xD, you're in!
    1
    JavaBuckets
    12/02/2013 11:32 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    You're in the system Mighty pork! Erhm.. I mean Cyentw xD
    1
    JavaBuckets
    12/02/2013 11:31 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Alright epic! You're in Gegy! xD
    1
    JavaBuckets
    12/02/2013 11:30 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Eco212I think the just the fact that you judge people's maturity by their age deters a lot of people from this thread.


    I thought that too, but... not to be mean or anything because I've been a child too, we all have (or is) xD But if I think back, there is not really any reason for a 10 year old child to be a judge in a serious contest. He/She should rather start out slow with being a judge in some of their friends works, then build their way up so that people begin believing in them. So no offense meant xD just for mature reasons (when I say mature I mean the way a person judges. We all know the older, the clever (not always though :S))

    - Thom, Head Developer and Leader of JavaBuckets
    1
    JavaBuckets
    12/02/2013 9:45 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Koslaw99Modder
    Name: TheNuk
    Team: No


    short an easy answers xD you're in
    1
    JavaBuckets
    12/02/2013 8:16 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    I guess you shall get one of the few spots then xD
    1
    JavaBuckets
    12/02/2013 8:07 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    How funny that YOU should ask :3 I was just looking on your profile a second ago xD
    No people are not allowed to use previous written code. Everything from scratch, but if you feel like it, you could re-write the API during the contest time the only API's allowed are: Forge and ModLoader (we recommend Forge though, since ML is dead -.-)
    1
    JavaBuckets
    12/02/2013 7:51 am
    Level 80 : Elite Modder
    JavaBuckets's Avatar
    Hey Brian xD Hows Adventure^3 Going ? :3 I've added you to the Judge's atm, tell me if you want to switch xD
    1

21 - 40 of 96

Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome