• 0

    posted a message on Flan's Mod 5.5.2 Update : 1.12.2, 100s of new Skins! : Helicopters, Mechas, Planes, Vehicles, 3D Guns, Multiplayer, TDM, CTF
    I'm trying to make a content pack but I don't know how to add a recipe. I want it to be made with a Biplane and a chest
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.3.2][SMP|SSP] Pudelhund's Dimension API v1.6.1
    please update to 1.4.6
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.4.7]Wireless Redstone v1.6.1
    I've installed for 1.4.6 and it crashes my minecraft with a black screen. I have minecraft 64 bit so command prompt shows me the report. Exeptiom in thread "Minecraft main thread" java.lang.VerifiError: <class: wirelessredstone/network/ClientPacketHandler,method: sendPacket signature: <Ldj;>V>Incompatible argument to function.
    Posted in: Minecraft Mods
  • 0

    posted a message on Death Animations
    Awesome Idea! I'm afraid that I don't have the skills yet. :(
    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on [1.2.3] Solar Energy [v1.1]
    Please update the mod to 1.4.5!
    Posted in: Minecraft Mods
  • 0

    posted a message on I need experts on modding to help me
    If you made a better description more people would help. :)
    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on Making a new dimension using forge? [SOLVED]
    Quote from BEASTpoint2

    I still can't figure it out... anybody help?

    How do you make a dimension? I've beem trying for a long time.
    Posted in: Modification Development
  • 0

    posted a message on Redstone Update - Allocator
    Thats a awesome idea! I hope its part of the redstone update. But I think it would be cool if items were taken by water to a chest they would go into the chest
    Posted in: Future Updates
  • 0

    posted a message on To all those who dislike the 'new' minecraft.
    I started Minecraft just after 1.2.5 was released. I have not been playing for that long but I've come to know the game really well. I was really hating the new inventory when 1.3.1 came out but I came acustom to it now. It is much easier to find things. I've been used to jungle biomes and a few months ago I descovered that jungles and most of the stuff I was acustom to were only added in 1.2.5
    Posted in: Discussion
  • 0

    posted a message on How to make a block power redstone?
    Quote from Destinedd

    public class BlockSolarPanel extends Block
    {
    public boolean solar;
    protected BlockSolarPanel(int x, int y)
    {
    super(x,y,Material.circuits);
    solar = true;
    //this.setTickRandomly(true);
    }
    
    @Override
    public String getTextureFile () {
    return CommonProxy.BLOCK_PNG;
    }
    
    public int tickRate()
    {
    return 20;
    }
    
    public void onBlockAdded(World world, int i, int j, int k)
    {
    if(world.getBlockMetadata(i, j, k) == 0)
    {
    super.onBlockAdded(world, i, j, k);
    }
    if(solar)
    {
    notifyNeighbors(world, i, j, k);
    }
    world.scheduleBlockUpdate(i, j, k, blockID, tickRate());
    }
    @Override
    public boolean canProvidePower()
    {
    return true;
    }
    
    public void onBlockDestroyedByPlayer(World world, int i, int j, int k, int l)
    {
    notifyNeighbors(world, i, j, k);
    }
    
    public void notifyNeighbors(World world, int i, int j, int k)
    {
    world.notifyBlocksOfNeighborChange(i, j - 1, k, blockID);
    world.notifyBlocksOfNeighborChange(i, j + 1, k, blockID);
    world.notifyBlocksOfNeighborChange(i - 1, j, k, blockID);
    world.notifyBlocksOfNeighborChange(i + 1, j, k, blockID);
    world.notifyBlocksOfNeighborChange(i, j, k - 1, blockID);
    world.notifyBlocksOfNeighborChange(i, j, k + 1, blockID);
    
    }
    
    public boolean isProvidingStrongPower(World world, int i, int j, int k, int l)
    {
    return (isPoweringTo(world, i, j, k, l));
    }
    
    public boolean isPoweringTo(IBlockAccess par1IBlockAccess, int par2, int par3, int par4, int par5)
    {
    	 if (!solar)
    	 {
    		 return false;
    	 }
    	 int i = par1IBlockAccess.getBlockMetadata(par2, par3, par4);
    	 if (i == 5 && par5 == 1)
    	 {
    		 return false;
    	 }
    	 else if (i == 3 && par5 == 3)
    	 {
    		 return false;
    	 }
    	 else if (i == 4 && par5 == 2)
    	 {
    		 return false;
    	 }
    	 else if (i == 1 && par5 == 5)
    	 {
    		 return false;
    	 }
    	 else
    		 return true;
    	 //return i != 2 || par5 != 4;
    }
    
    public void updateTick(World world, int i, int j, int k, Random random)
    {
    solar = true; //Generic.isSolar(world, i, j, k, blockID);
    notifyNeighbors(world, i, j, k);
    world.scheduleBlockUpdate(i, j, k, blockID, tickRate());
    }
    }


    Many thanks for the help, unfortunatly still doesn't work :(

    Here are the changes I made. I don't understand metadata/tile entity (once I get it working I guess i will need too :) ) but for now I am just trying to get it to power regaurdless.

    You can use a modloader mod with forge by putting it into the mods folder.
    Posted in: Modification Development
  • 0

    posted a message on AoA--25 New Dimensions• 330 Mobs• 27 Bosses• Skills• Quests• 600+Items [LARGE Bugfix Update, May 2018]
    Quote from Anoki078

    Was hoping someone could help me out. All of the mods I have installed right now work fine with each other but when I try and get DivineRPG to work with them I get this error log:

    Minecraft has crashed!
    ----------------------

    Minecraft has stopped running because it encountered a problem; Failed to start game

    A full error report has been saved to C:\Users\Anthony\AppData\Roaming\.minecraft\crash-reports\crash-2012-12-06_17.10.02-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash :(



    --- BEGIN ERROR REPORT cf837eae --------
    Full report at:
    C:\Users\Anthony\AppData\Roaming\.minecraft\crash-reports\crash-2012-12-06_17.10.02-client.txt
    Please show that file to Mojang, NOT just this screen!

    Generated 12/6/12 5:10 PM

    -- System Details --
    Details:
    Minecraft Version: 1.4.5
    Operating System: Windows Vista (amd64) version 6.0
    Java Version: 1.7.0_05, Oracle Corporation
    Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 436114448 bytes (415 MB) / 668794880 bytes (637 MB) up to 954466304 bytes (910 MB)
    JVM Flags: 2 total; -Xms512m -Xmx1024m
    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 v7.23 FML v4.5.2.459 Minecraft Forge 6.4.0.395 Optifine OptiFine_1.4.5_HD_D3 22 mods loaded, 22 mods active
    mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
    mod_GuiAPI [mod_GuiAPI] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    mod_ControlPack [mod_ControlPack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    mod_TooManyItems [mod_TooManyItems] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
    mod_ReiMinimap [mod_ReiMinimap] ([1.4.5]ReiMinimap_v3.2_05.zip) Unloaded->Constructed->Pre-initialized->Initialized
    mod_treecapitator [TreeCapitator] ([1.4.5]Treecapitator.ML.1.4.5.r01.zip) Unloaded->Constructed->Pre-initialized->Initialized
    Backpack [Backpack] (backpack-1.5.4-1.4.4.zip) Unloaded->Constructed->Pre-initialized->Initialized
    craftguide [CraftGuide] (CraftGuide-1.6.5.11.zip) Unloaded->Constructed->Pre-initialized->Initialized
    DivineRPG [DivineRPG] (DivineRPG v1.1.jar) Unloaded->Constructed->Pre-initialized->Initialized
    MoCreatures [DrZhark's Mo'Creatures Mod] (DrZharks MoCreatures Mod v4.3.0.zip) Unloaded->Constructed->Pre-initialized->Initialized
    mod_InvTweaks [Inventory Tweaks] (InvTweaks-1.45-1.4.4.zip) Unloaded->Constructed->Pre-initialized->Initialized
    MagicYarn [Magic Yarn] (MagicYarn_1.4.4.zip) Unloaded->Constructed->Pre-initialized->Initialized
    mod_MAtmos [mod_MAtmos] (matmos_packaged.zip) Unloaded->Constructed->Pre-initialized->Initialized
    AS_Minions [Minions] (Minions_1.4.4.zip) Unloaded->Constructed->Pre-initialized->Initialized
    mod_TaleOfKingdoms [mod_TaleOfKingdoms] (Tale of Kingdoms V1.4.2.1.zip) Unloaded->Constructed->Pre-initialized->Initialized
    TaleOfKingdoms [Tale of Kingdoms] (Tale of Kingdoms V1.4.2.1.zip) Unloaded->Constructed->Pre-initialized->Initialized
    pitman-87_TF2_Dispenser [TF2 Dispenser] (TF2_Dispenser_1.4.5b.zip) Unloaded->Constructed->Pre-initialized->Errored
    pitman-87_TF2_Sentry [TF2 Sentry] (TF2_Sentry_1.4.5c.zip) Unloaded->Constructed->Pre-initialized->Initialized
    pitman-87_TF2_Teleporter [TF2 Teleporter] (TF2_Teleporter_1.4.5c.zip) Unloaded->Constructed->Pre-initialized->Errored
    AS_UpdateCheck [AtomicStryker Update Check Mod] (UpdateCheckerMod_1.4.4.zip) Unloaded->Constructed->Pre-initialized->Initialized
    LWJGL: 2.4.2
    OpenGL: GeForce 9600M GT/PCI/SSE2 GL version 2.1.2, NVIDIA Corporation
    Is Modded: Definitely; Client brand changed to 'forge,fml'
    Type: Client (map_client.txt)
    Texture Pack: Sphax PureBDCraft 64x MC14.zip
    Profiler Position: N/A (disabled)
    Vec3 Pool Size: ~~ERROR~~ NullPointerException: null

    java.lang.IllegalArgumentException: Slot 240 is already occupied by xolova.blued00r.divinerpg.blocks.BlockAcceleraunch@60f8df02 when adding TF2.Dispenser.common.BlockTF2Dispenser@72f92e0a
    at amj.(Block.java:292)
    at aju.(BlockContainer.java:7)
    at TF2.Dispenser.common.BlockTF2Dispenser.(BlockTF2Dispenser.java:22)
    at TF2.Dispenser.common.TF2DispenserMod.load(TF2DispenserMod.java:105)
    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:440)
    at sun.reflect.GeneratedMethodAccessor6.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:69)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
    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:69)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:651)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:197)
    at net.minecraft.client.Minecraft.a(Minecraft.java:469)
    at net.minecraft.client.Minecraft.run(Minecraft.java:756)
    at java.lang.Thread.run(Unknown Source)
    --- END ERROR REPORT 11933f68 ----------


    I don't know how to really read these error logs but I am assuming there is a conflict with TF2 Teleporter and TF2 Dispenser. And I was wondering if anyone could help me with a solution so I won't have to give up any of the mods. Thanks in advance.

    You have to either uninstall TF2 or uninstal Divine RPG mod. :/
    Posted in: Minecraft Mods
  • 0

    posted a message on Modding group
    Quote from pokedude44

    its okay :) you can still be apart of it :)

    Thanks I'll be part of the modding team so tell me what to code and I'll code it. :)
    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on Modding group
    Aw it's a pitty I'd like to be part of your group but I live in SA. :(
    Posted in: Requests / Ideas For Mods
  • 1

    posted a message on 12w32a Snapshot Ready for Testing
    Crashed my minecraft.....



    Minecraft has crashed!
    ----------------------
    Minecraft has stopped running because it encountered a problem; Failed to start game
    This error has been saved to C:\Users\Greg\AppData\Roaming\.minecraft\crash-reports\crash-2012-08-19_10.33.40-client.txt for your convenience. Please include a copy of this file if you report this crash to anyone.

    --- BEGIN ERROR REPORT 8fa41e2c --------
    Generated 2012/08/19 10:33 AM
    - Minecraft Version: 12w32a
    - Operating System: Windows 7 (amd64) version 6.1
    - Java Version: 1.7.0_04, Oracle Corporation
    - Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    - Memory: 918524456 bytes (875 MB) / 1029046272 bytes (981 MB) up to 1029046272 bytes (981 MB)
    - JVM Flags: 2 total; -Xmx1024m -Xms1024m
    - LWJGL: 2.4.2
    - OpenGL: ATI Radeon X300/X550/X1050 Series GL version 2.1.8545 Release, ATI Technologies Inc.
    - Is Modded: Probably not
    - Type: Client
    - Texture Pack: Default
    - Profiler Position: N/A (disabled)
    java.lang.SecurityException: SHA1 digest error for aux.class
    at sun.security.util.ManifestEntryVerifier.verify(Unknown Source)
    at java.util.jar.JarVerifier.processEntry(Unknown Source)
    at java.util.jar.JarVerifier.update(Unknown Source)
    at java.util.jar.JarVerifier$VerifierStream.read(Unknown Source)
    at sun.misc.Resource.getBytes(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 net.minecraft.client.Minecraft.a(SourceFile:304)
    at net.minecraft.client.Minecraft.run(SourceFile:514)
    at java.lang.Thread.run(Unknown Source)
    --- END ERROR REPORT 3b665ff6 ----------
    Posted in: Minecraft News
  • To post a comment, please .