• 0

    posted a message on [1.2.5] Feed The Beast:- Insanity SSP Released.
    -Edit-
    I'm just stupid
    Posted in: Maps
  • 0

    posted a message on [1.2.5] Feed The Beast:- Insanity SSP Released.
    Hey Slowpoke, I seem to be crashing once I load the map. I'll try to edit this post with an error report if I can get one. I just go straight to a black screen when I load the map. Not to mention, it says that the map is V3

    Oh F*cking Christ I'm an idiot. I didn't install Modloader -.-
    Posted in: Maps
  • 0

    posted a message on [1.2.5] Feed The Beast:- Insanity SSP Released.
    Quote from Solundor

    Just wondering will the new ssp be different to the now smp
    Look at the Picture Slowpoke added on the last page, and that my friend, will answer your question ;)
    Posted in: Maps
  • 0

    posted a message on [1.2.5] Feed The Beast:- Insanity SSP Released.
    Quote from JimBobIII

    With that being the SSP going into beta and looking new, does this mean the vesuvius is no longer happening or being delayed or is this beta one just a brand new idea to come later?

    The SMP will be out in a bit. The SSP one is just to keep us shut up and occupied until then ;-)
    Posted in: Maps
  • 0

    posted a message on [1.2.5] Feed The Beast:- Insanity SSP Released.
    Yes! If you need another tester slowpoke, let me know, I'm a buddy of NearbyGamer :)
    Posted in: Maps
  • 0

    posted a message on [Creating Mods] Minecraft Forge [28/1/12]
    I'm loving the tutorials man! Is it possible you could do one on making a new type of Furnace block? If you've never done it before no worries :smile.gif: but your tuts are by far the best I have ever followed!
    Posted in: Tutorials
  • 0

    posted a message on Server Unreachable
    Quote from webrosc

    ^^^^ total rubbish

    op have you checked any firewalls etc, and double checked the forwarding is set right?

    Yepp. There shouldn't be any firewall issues seeing as both servers run the same OS (although one is x64 and the other x86) an I didn't have to do any firewall changes. As well as port forwarding, I did it the same way (although to the second servers local IP(10.0.0.13(Primary is 10.0.0.4)) So I'm not quite sure what is goin' on =\
    Posted in: Server Support and Administration
  • 0

    posted a message on Server Unreachable
    Quote from Royalep

    you can't run two mc servers on the same comp. also the port is changed by where you live.

    "They are Both on dedicated machines running a modified version of Crux Linux."
    They aren't on the same computer. Thanks though.
    Posted in: Server Support and Administration
  • 0

    posted a message on Server Unreachable
    Hey guys,
    I am hosting (well, attempting to host) two separate Minecraft servers from home. They are Both on dedicated machines running a modified version of Crux Linux. The first server running the default port of 25565 is reachable just fine, both from my network and from outside. However whenever I try to change the port to something other than the default port, they refuse to be connected to.
    If you could help me out that would be amazing! If you need more information please let me know!


    -JoshJ5Hawk
    Posted in: Server Support and Administration
  • 0

    posted a message on [1.8.1]More Wood![V6.0]
    Quote from Mackzwellz

    Joshj5hawk, are you still on forums? There is already 1.0.0 version out, I think people would like to know, when you would be able to update your mod or would it be updated at all? If not, I think there always are people like Coupon22 and aSakofDonuts, who take requests for updates, but if they don't have a premission to update, it's always kind of uneasy for everyone, so would you answer us? :smile.gif:

    I would LOVE to update this! However with school, and two other mods that I am trying to maintain, I give full permission to anyone that would like to update this mod! Have a blast with it!
    Posted in: Minecraft Mods
  • 0

    posted a message on [Creating Mods] Minecraft Forge [28/1/12]
    Awesome tutorials Methuselah! I was just curious as to what is the highest you can go with tool effectiveness is. Example. I make an ore (Silver) that I only want to be mined my diamond (so I would set the block to 3) and then I have an ore I want to mine after that (let's say, Emerald) that I want to mine with my silver. Can I set silver's effectiveness to 4 and emerald's resistance (so to say) to 4 as well? Is this possible? If so, what is the Highest I could go, without breaking java rules?
    EDIT: I should also add, how would setting a pick's effectiveness to 4 (or higher) affect the speed against normal/original ores?
    Posted in: Tutorials
  • 0

    posted a message on [Tutorial] Modding with MCP and Modloader Videos [Blocks][1.0.0]
    Quote from Pwned231

    ok, so i have a problem, when i start Minecraft debug on eclipse (F11) i have an error o_O

    The error:

    --- BEGIN ERROR REPORT --------
    Generated 25-12-2011 19:06
    
    Minecraft: Minecraft 1.0.0
    OS: Windows 7 (amd64) version 6.1
    Java: 1.7.0_01, Oracle Corporation
    VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    LWJGL: 2.4.2
    OpenGL: GeForce G 105M/PCI/SSE2 version 3.3.0, NVIDIA Corporation
    
    java.lang.RuntimeException: java.lang.Exception: Image not found: pwned/emeraldblock.png
    	at net.minecraft.src.ModLoader.RegisterAllTextureOverrides(ModLoader.java:1354)
    	at net.minecraft.src.ModLoader.OnTick(ModLoader.java:1063)
    	at net.minecraft.src.EntityRendererProxy.updateCameraAndRender(EntityRendererProxy.java:26)
    	at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:729)
    	at net.minecraft.client.Minecraft.run(Minecraft.java:627)
    	at java.lang.Thread.run(Thread.java:722)
    Caused by: java.lang.Exception: Image not found: pwned/emeraldblock.png
    	at net.minecraft.src.ModLoader.loadImage(ModLoader.java:1024)
    	at net.minecraft.src.ModLoader.RegisterAllTextureOverrides(ModLoader.java:1346)
    	... 5 more
    --- END ERROR REPORT ----------


    My mod_ModTut (I renamed to mod_emeraldblock) so, my mod_emeraldblock file:

    package net.minecraft.src;
    
    public class mod_emeraldblock extends BaseMod
    {
        public void load()
        {
        ModLoader.RegisterBlock(emeraldblock);
        ModLoader.AddName(emeraldblock, "Emerald Block");
        ModLoader.AddRecipe(new ItemStack(emeraldblock, 9), new Object[] {
                "XX", "XX", Character.valueOf('X'), Block.dirt });
        }
    @MLProp(min=1.0D, max=1024D)
    public static int emeraldblockID = 3000;
    //Initialization
    public static Block emeraldblock;
    //Block Definitions
    static
    {
        emeraldblock = new BlockEmeraldBlock(emeraldblockID, ModLoader.addOverride("/terrain.png", "pwned/emeraldblock.png")).setHardness(1.0F).setBlockName("emeraldblock").setResistance(10.0F);
    }
    public String getVersion()
    {
        return "1.0.0";
    }
    }


    My BlockTutBlock (renamed to:) BlockEmeraldBlock:

    package net.minecraft.src;
    import java.util.Random;
    
    public class BlockEmeraldBlock extends Block
    {
        public BlockEmeraldBlock(int i, int j)
        {
                super(i, j, Material.rock);
        }
        public int idDropped(int i, Random random)
        {
                return mod_emeraldblock.emeraldblock.blockID;
        }
    }


    I did a paste like you said, in this case called pwned, and with the file .png inside it, called emeraldblock.png

    I Have no errors on Eclipse

    Image not found: pwned/emeraldblock.png

    it can't find your picture :smile.gif: make sure that it is in your Minecraft.jar, and make sure the capitalization is EXACTLY the same :smile.gif:
    Posted in: Tutorials
  • 0

    posted a message on [Tutorial] Modding with MCP and Modloader Videos [Blocks][1.0.0]
    Quote from darkh4x

    hi. i dont know if this has been answered before. a quick glance over this topic didnt show anything.

    this is my first attempt at modding so i watched the video and followed the steps but changing the info to match the new block i was making. i only have 1 error in eclipse.

    this is the eclipse error

    @MLProp(min=1.0D, max=1024D)

    this line has an error. type mismatch cannot covert MLProp to animation.

    i just ignored it and put it in my jar to test it out. i then got this error

    modloader.txt

    Dec 15, 2011 2:40:58 PM ModLoader init
    FINE: ModLoader 1.0.0 Initializing...
    Dec 15, 2011 2:40:58 PM ModLoader readFromClassPath
    FINER: Adding mods from C:\Users\tyler\AppData\Roaming\.minecraft\bin\minecraft.jar
    Dec 15, 2011 2:40:58 PM ModLoader readFromClassPath
    FINER: Zip found.
    Dec 15, 2011 2:40:58 PM ModLoader addMod
    FINE: Failed to load mod from "mod_Dark.class"
    Dec 15, 2011 2:40:58 PM ModLoader addMod
    FINER: THROW
    java.lang.NoClassDefFoundError: mod_Dark (wrong name: net/minecraft/src/mod_Dark)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at ModLoader.addMod(ModLoader.java:270)
    at ModLoader.readFromClassPath(ModLoader.java:1227)
    at ModLoader.init(ModLoader.java:825)
    at ModLoader.AddAllRenderers(ModLoader.java:186)
    at wb.<init>(wb.java:76)
    at wb.<clinit>(wb.java:9)
    at net.minecraft.client.Minecraft.a(SourceFile:265)
    at net.minecraft.client.Minecraft.run(SourceFile:644)
    at java.lang.Thread.run(Unknown Source)

    Dec 15, 2011 2:41:09 PM ModLoader AddAllRenderers
    FINE: Initialized

    here is the code in both mods

    mod_BlockDark

    package net.minecraft.src;

    public class mod_BlockDark extends BaseMod
    {
    public void load()
    {
    ModLoader.RegisterBlock(Dark);
    ModLoader.AddName(Dark, "Dark Block");
    ModLoader.AddRecipe(new ItemStack(Dark, 4), new Object[] {
    "XX", "XX", Character.valueOf('X'), Block.cobblestone });
    }
    @MLProp(min=1.0D, max=1024D)
    public static int DarkID = 150;
    //Initialization
    public static Block Dark;
    //Block Definitions
    static
    {
    Dark = new BlockDark(DarkID, ModLoader.addOverride("/terrain.png", "/dark/darkblock.png")).setHardness(1.0F).setBlockName("Darkblock").setResistance(10.0F);
    }
    public String getVersion()
    {
    return "Mod Dark V 1.0/Minecraft 1.0.0";
    }
    }

    BlockDark

    package net.minecraft.src;
    import java.util.Random;

    public class BlockDark extends Block
    {
    public BlockDark(int i, int j)
    {
    super(i, j, Material.rock);
    }
    public int idDropped(int i, Random random)
    {
    return mod_BlockDark.Dark.blockID;
    }
    }

    i know it is probably a simple fix. thank you even though im having problems i have learned a lot of new things from your tutorial.

    Just make sure that you opened up MLProp.java and changed it from
    //package net.minecraft.src;
    //Uncomment that line if you use MCP.
    
    import java.lang.annotation.*;
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.FIELD)
    public @interface MLProp {
    	String name() default "";
    
    	String info() default "";
    
    	double min() default Double.NEGATIVE_INFINITY;
    
    	double max() default Double.POSITIVE_INFINITY;
    }

    to
    package net.minecraft.src;
    
    import java.lang.annotation.*;
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.FIELD)
    public @interface MLProp {
    	String name() default "";
    
    	String info() default "";
    
    	double min() default Double.NEGATIVE_INFINITY;
    
    	double max() default Double.POSITIVE_INFINITY;
    }

    Notice that the line
    package net.minecraft.src;

    is no longer commented
    (commented means the line starts with a double forward-slash
    //

    I hope that helped
    Quote from skazazes97

    Hey, Im new to this and this was a great help. I am getting some errors about paulscode...

    package net.minecraft.src;
    
    public class mod_Steel extends BaseMod
    {
    	public void load()
    	{
    		ModLoader.RegisterBlock(steel);
    		ModLoader.AddName(steel, "Steel");
    		ModLoader.AddRecipe(new ItemStack(steel, 3), new Object[] {
    			"X,X,X", "#,#,#", "X,X,X", Character.valueOf('X'), Item.coal, Character.valueOf('#'), Item.ingotIron});
    	
    	}
    @MLProp(min=1.0D, max=1024D)
    public static int steelID = 200;
    //Initialize
    public static Block steel;
    //Block Definitions
    static
    {
    	steel = new BlockSteel(steelID, ModLoader.addOverride("/terrain.png", "/mod/steel.png")).setHardness(3F).setBlockName("Steel").setResistance(5F);
    }
    public String getversion()
    {
    	return "Steel Mod V1.0/ MC 1.0.0";
    }
    }



    package net.minecraft.src;
    import java.util.Random;
    
    public class BlockSteel extends Block
    {
    	public BlockSteel(int i, int j)
    	{
    		super(i, j, Material.rock);
    	}
    	public int idDropped(int i, Random random)
    	{
    		return mod_Steel.steel.blockID;
    	}
    }



    Error when trying to test it:


    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
    The import paulscode cannot be resolved
    The import paulscode cannot be resolved
    The import paulscode cannot be resolved
    The import paulscode cannot be resolved
    The import paulscode cannot be resolved
    SoundSystem cannot be resolved to a type
    SoundSystemConfig cannot be resolved
    paulscode cannot be resolved to a type
    SoundSystemConfig cannot be resolved
    paulscode cannot be resolved to a type
    SoundSystemConfig cannot be resolved
    SoundSystemConfig cannot be resolved
    paulscode cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type
    SoundSystem cannot be resolved to a type

    at net.minecraft.src.SoundManager.<init>(SoundManager.java:10)
    at net.minecraft.client.Minecraft.<init>(Minecraft.java:208)
    at net.minecraft.src.MinecraftImpl.<init>(MinecraftImpl.java:21)
    at net.minecraft.client.Minecraft.startMainThread(Minecraft.java:1955)
    at net.minecraft.client.Minecraft.startMainThread1(Minecraft.java:1941)
    at net.minecraft.client.Minecraft.main(Minecraft.java:2001)
    at Start.main(Start.java:25)



    Any help is appreciated!!!

    Thanks,
    Sean

    Hey Sean,
    I'm not quite sure about this error, I have not actually seen this before with my code. My best suggestion would be to start with a brand-spankin'-new minecraft.jar, and redo the code just to make sure! If you need further assistance, don't be afraid to ask!
    -Josh
    Posted in: Tutorials
  • 0

    posted a message on [Tutorial] Modding with MCP and Modloader Videos [Blocks][1.0.0]
    Updated to MC version 1.0.0!
    Posted in: Tutorials
  • 0

    posted a message on [1.8.1]More Wood![V6.0]
    Finally Updated to 1.8.1!
    Changelog
    V6.0 ~Updated to 1.8.1!!
         ~Added Horizontal Tree Gen!
    Posted in: Minecraft Mods
  • To post a comment, please .