• 0

    posted a message on Custom Snowball is invisible in Multiplayer
    Thanks, I had to move the entity registration :)
    Posted in: Modification Development
  • 0

    posted a message on Custom Snowball is invisible in Multiplayer
    Hello, I made custom snowballs and they work fine, but on servers they are invisible, help?

    Main Class:


    package com.random.main;

    imports

    @Mod(modid = Random.MODID, version = Random.VERSION)

    public class Main {

    public static final String MODID = "random";
    public static final String VERSION = "0.1";


    //Creative Tabs

    public static CreativeTabs RandomTab = new CreativeTabs("RandomTab"){
    public Item getTabIconItem() {return Items.emerald}};

    //Proxy
    @SidedProxy(clientSide = "com.random.main.ClientProxy", serverSide = "com.random.main.CommonProxy")
    public static CommonProxy proxy;

    public static Item blueBall;
    public static Item redBall;

    @EventHandler
    public void preInit(FMLPreInitializationEvent e){

    blueBall = new ItemBlueBall().setUnlocalizedName("blueBall").setTextureName(TP + "blue_ball").setCreativeTab(RandomTab);
    redBall = new ItemRedBall().setUnlocalizedName("redBall").setTextureName(TP + "red_ball").setCreativeTab(RandomTab);


    GameRegistry.registerItem(redBBall, "redBBall");
    GameRegistry.registerItem(blueBBall, "blueBBall");

    proxy.registerRenderThings();
    }

    @EventHandler
    public void load(FMLInitializationEvent event){
    }


    }





    My ItemBlueBall:


    package com.random.main;

    imports

    public class ItemBlueBall extends Item
    {
    public ItemBlueBall()
    {
    this.maxStackSize = 32;
    this.setCreativeTab(Main.RandomTab);
    }

    public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer)
    {
    if (!entityplayer.capabilities.isCreativeMode)
    {
    --itemstack.stackSize;
    }

    world.playSoundAtEntity(entityplayer, "random.bow", 0.5F, 0.4F / (itemRand.nextFloat() * 0.4F + 0.8F));

    if (!world.isRemote)
    {
    world.spawnEntityInWorld(new EntityBlueBall(world, entityplayer));
    }

    return itemstack;
    }
    }



    My ItemRedBall:


    package com.random.main;

    imports

    public class ItemRedBall extends Item
    {

    public ItemRedBall()
    {
    this.maxStackSize = 32;
    this.setCreativeTab(Main.RandomTab);
    }

    public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer)
    {
    if (!entityplayer.capabilities.isCreativeMode)
    {
    --itemstack.stackSize;
    }

    world.playSoundAtEntity(entityplayer, "random.bow", 0.5F, 0.4F / (itemRand.nextFloat() * 0.4F + 0.8F));

    if (!world.isRemote)
    {
    world.spawnEntityInWorld(new EntityRedBall(world, entityplayer));
    }

    return itemstack;
    }
    }



    My ClientProxy:


    package com.random.main;

    imports

    public class ClientProxy extends CommonProxy{


    @Override
    public void registerRenderThings(){


    System.out.println("Random Mod: ClientProxy loaded");

    EntityRegistry.registerModEntity(EntityRedBall.class, "Red Ball", 1, Main.MODID, 64, 10, true);
    RenderingRegistry.registerEntityRenderingHandler(EntityRedBall.class, new RendererBall(
    (Item) Main.redBBall));

    EntityRegistry.registerModEntity(EntityBlueBall.class, "Blue Ball", 2, Main.MODID, 64, 10, true);
    RenderingRegistry.registerEntityRenderingHandler(EntityBlueBall.class, new RendererBall(
    (Item) Main.blueBBall));

    }

    }



    My CommonProxy:


    package com.random.main;


    public class CommonProxy {


    public void registerRenderThings(){

    }

    }



    My EntityRedBall


    package com.random.main;

    imports

    public class EntityRedBall extends EntityThrowable
    {

    public EntityRedBall(World world)
    {
    super(world);
    }

    public EntityRedBall(World world, EntityLivingBase livingbase)
    {
    super(world, livingbase);
    }

    public EntityRedBall(World world, double x, double y, double z)
    {
    super(world, x, y, z);
    }

    protected void onImpact(MovingObjectPosition objposition)
    {
    if (objposition.entityHit != null)
    {
    byte b0 = 0;

    if (objposition.entityHit instanceof EntityBlaze)
    {
    b0 = 3;
    }

    objposition.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.getThrower()), (float)b0);
    }

    for (int i = 0; i < 8; ++i)
    {
    this.worldObj.spawnParticle("snowballpoof", this.posX, this.posY, this.posZ, 0.0D, 0.0D, 0.0D);
    }

    if (!this.worldObj.isRemote)
    {
    this.setDead();
    }
    }
    }



    My EntityBlueBall:


    package com.random.main;

    imports

    public class EntityBlueBall extends EntityThrowable
    {

    public EntityBlueBall(World world)
    {
    super(world);
    }

    public EntityBlueBall(World world, EntityLivingBase livingbase)
    {
    super(world, livingbase);
    }

    public EntityBlueBall(World world, double x, double y, double z)
    {
    super(world, x, y, z);
    }

    /**
    * Called when this EntityThrowable hits a block or entity.
    */
    protected void onImpact(MovingObjectPosition objposition)
    {
    if (objposition.entityHit != null)
    {
    byte b0 = 0;

    if (objposition.entityHit instanceof EntityBlaze)
    {
    b0 = 3;
    }

    objposition.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.getThrower()), (float)b0);
    }

    for (int i = 0; i < 8; ++i)
    {
    this.worldObj.spawnParticle("snowballpoof", this.posX, this.posY, this.posZ, 0.0D, 0.0D, 0.0D);
    }

    if (!this.worldObj.isRemote)
    {
    this.setDead();
    }
    }
    }



    My RendererBall:


    package com.random.main;

    imports

    @SideOnly(Side.CLIENT)
    public class RendererBounceBall extends Render
    {
    private Item field_94151_a;
    private int field_94150_f;

    public RendererBounceBall(Item p_i1259_1_, int p_i1259_2_)
    {
    this.field_94151_a = p_i1259_1_;
    this.field_94150_f = p_i1259_2_;
    }

    public RendererBounceBall(Item item)
    {
    this(item, 0);
    }

    /**
    * Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then
    * handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic
    * (Render<T extends Entity) and this method has signature public void func_76986_a(T entity, double d, double d1,
    * double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.
    */
    public void doRender(Entity entity, double x, double y, double z, float f1, float f2)
    {
    IIcon iicon = this.field_94151_a.getIconFromDamage(this.field_94150_f);

    if (iicon != null)
    {
    GL11.glPushMatrix();
    GL11.glTranslatef((float)x, (float)y, (float)z);
    GL11.glEnable(GL12.GL_RESCALE_NORMAL);
    GL11.glScalef(0.5F, 0.5F, 0.5F);
    this.bindEntityTexture(entity);
    Tessellator tessellator = Tessellator.instance;

    if (iicon == ItemPotion.func_94589_d("bottle_splash"))
    {
    int i = PotionHelper.func_77915_a(((EntityPotion)entity).getPotionDamage(), false);
    float f2 = (float)(i >> 16 & 255) / 255.0F;
    float f3 = (float)(i >> 8 & 255) / 255.0F;
    float f4 = (float)(i & 255) / 255.0F;
    GL11.glColor3f(f2, f3, f4);
    GL11.glPushMatrix();
    this.func_77026_a(tessellator, ItemPotion.func_94589_d("overlay"));
    GL11.glPopMatrix();
    GL11.glColor3f(1.0F, 1.0F, 1.0F);
    }

    this.func_77026_a(tessellator, iicon);
    GL11.glDisable(GL12.GL_RESCALE_NORMAL);
    GL11.glPopMatrix();
    }
    }

    /**
    * Returns the location of an entity's texture. Doesn't seem to be called unless you call Render.bindEntityTexture.
    */
    protected ResourceLocation getEntityTexture(Entity p_110775_1_)
    {
    return TextureMap.locationItemsTexture;
    }

    private void func_77026_a(Tessellator tessellator, IIcon icon)
    {
    float f = icon.getMinU();
    float f1 = icon.getMaxU();
    float f2 = icon.getMinV();
    float f3 = icon.getMaxV();
    float f4 = 1.0F;
    float f5 = 0.5F;
    float f6 = 0.25F;
    GL11.glRotatef(180.0F - this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F);
    GL11.glRotatef(-this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F);
    tessellator.startDrawingQuads();
    tessellator.setNormal(0.0F, 1.0F, 0.0F);
    tessellator.addVertexWithUV((double)(0.0F - f5), (double)(0.0F - f6), 0.0D, (double)f, (double)f3);
    tessellator.addVertexWithUV((double)(f4 - f5), (double)(0.0F - f6), 0.0D, (double)f1, (double)f3);
    tessellator.addVertexWithUV((double)(f4 - f5), (double)(f4 - f6), 0.0D, (double)f1, (double)f2);
    tessellator.addVertexWithUV((double)(0.0F - f5), (double)(f4 - f6), 0.0D, (double)f, (double)f2);
    tessellator.draw();
    }
    }

    Posted in: Modification Development
  • 0

    posted a message on Custom Rendered Block is invisible [Solved]
    Thank you all for your help :)
    The ITileEntityProvider-Solution worked.
    Posted in: Modification Development
  • 0

    posted a message on Custom Rendered Block is invisible [Solved]
    Hello I have a problem with my custom rendered block, whenever I place it, it shows invisible.

    My main class:

    package com.random.main;



    imports (bunch of imports)


    @Mod(modid = Random.MODID, version = Random.VERSION)


    public class Main {

    public static final String MODID = "random";
    public static final String VERSION = "0.1";


    public static CreativeTabs randomTab = new CreativeTabs("randomTab"){
    public Item getTabIconItem() {return Items.emerald}};

    //Proxy
    @SidedProxy(clientSide = "com.random.proxy.ClientProxy", serverSide = "com.random.proxy.CommonProxy")
    public static CommonProxy proxy;

    public static Block spikes;



    @EventHandler
    public void preInit(FMLPreInitializationEvent e){

    spikes = new BlockSpikes(Material.rock).setBlockName("spikes").setBlockTextureName(MODID + ":spikes").setCreativeTab(randomTab);

    GameRegistry.registerBlock(spikes, "spikes");


    GameRegistry.addRecipe(new ItemStack(spikes, 6), "X X", "XXX", 'X', Blocks.stone);


    GameRegistry.registerTileEntity(TileEntitySpikes.class, "spikes");


    proxy.registerRenderThings();
    }

    @EventHandler
    public void load(FMLInitializationEvent event){

    }


    }

    This is my Block class:


    package com.random.main;

    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.tileentity.TileEntity;
    import net.minecraft.world.IBlockAccess;
    import net.minecraft.world.World;



    public class BlockSpikes extends Block{



    public BlockSpikes(Material p_i45394_1_) {
    super(p_i45394_1_);
    this.setHardness(3.0F);
    this.setResistance(4.0F);
    this.setBlockTextureName(Random.MODID + ":" + "spikes");
    }



    public int getRenderType(){
    return -1;
    }

    public boolean isOpaqueCube(){
    return false;
    }

    public boolean renderAsNormalBlock(){
    return false;
    }

    public boolean shouldSideBeRendered(IBlockAccess iblockaccess, int i, int j, int k, int l)
    {
    return false;
    }

    public TileEntity createNewTileEntity(World world, int metadata){
    return new TileEntitySpikes();
    }

    }

    My TileEntitySpikes:


    package com.random.main;

    import net.minecraft.nbt.NBTTagCompound;
    import net.minecraft.network.Packet;
    import net.minecraft.tileentity.TileEntity;


    public class TileEntitySpikes extends TileEntity {

    }

    My ModelSpikes:


    package com.random.main;

    import net.minecraft.client.model.ModelBase;
    import net.minecraft.client.model.ModelRenderer;
    import net.minecraft.entity.Entity;

    public class ModelSpikes extends ModelBase
    {
    //fields
    ModelRenderer Shape1;
    ModelRenderer Shape2;
    ModelRenderer Shape3;
    ModelRenderer Shape4;
    ModelRenderer Shape6;
    ModelRenderer Shape5;
    ModelRenderer Shape7;
    ModelRenderer Shape8;
    ModelRenderer Shape9;
    ModelRenderer Shape10;
    ModelRenderer Shape11;
    ModelRenderer Shape12;
    ModelRenderer Shape13;
    ModelRenderer Shape14;
    ModelRenderer Shape15;
    ModelRenderer Shape16;
    ModelRenderer Shape17;

    public ModelSpikes()
    {
    textureWidth = 128;
    textureHeight = 32;

    Shape1 = new ModelRenderer(this, 4, 0);
    Shape1.addBox(0F, 0F, 0F, 16, 1, 16);
    Shape1.setRotationPoint(-8F, 23F, -8F);
    Shape1.setTextureSize(128, 32);
    Shape1.mirror = true;
    setRotation(Shape1, 0F, 0F, 0F);
    Shape2 = new ModelRenderer(this, 0, 0);
    Shape2.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape2.setRotationPoint(6F, 16F, 6F);
    Shape2.setTextureSize(128, 32);
    Shape2.mirror = true;
    setRotation(Shape2, 0F, 0F, 0F);
    Shape3 = new ModelRenderer(this, 0, 0);
    Shape3.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape3.setRotationPoint(-7F, 16F, 6F);
    Shape3.setTextureSize(128, 32);
    Shape3.mirror = true;
    setRotation(Shape3, 0F, 0F, 0F);
    Shape4 = new ModelRenderer(this, 0, 0);
    Shape4.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape4.setRotationPoint(2F, 16F, 6F);
    Shape4.setTextureSize(128, 32);
    Shape4.mirror = true;
    setRotation(Shape4, 0F, 0F, 0F);
    Shape6 = new ModelRenderer(this, 0, 0);
    Shape6.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape6.setRotationPoint(-3F, 16F, 6F);
    Shape6.setTextureSize(128, 32);
    Shape6.mirror = true;
    setRotation(Shape6, 0F, 0F, 0F);
    Shape5 = new ModelRenderer(this, 0, 0);
    Shape5.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape5.setRotationPoint(6F, 16F, -7F);
    Shape5.setTextureSize(128, 32);
    Shape5.mirror = true;
    setRotation(Shape5, 0F, 0F, 0F);
    Shape7 = new ModelRenderer(this, 0, 0);
    Shape7.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape7.setRotationPoint(2F, 16F, -7F);
    Shape7.setTextureSize(128, 32);
    Shape7.mirror = true;
    setRotation(Shape7, 0F, 0F, 0F);
    Shape8 = new ModelRenderer(this, 0, 0);
    Shape8.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape8.setRotationPoint(-7F, 16F, -7F);
    Shape8.setTextureSize(128, 32);
    Shape8.mirror = true;
    setRotation(Shape8, 0F, 0F, 0F);
    Shape9 = new ModelRenderer(this, 0, 0);
    Shape9.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape9.setRotationPoint(-3F, 16F, -7F);
    Shape9.setTextureSize(128, 32);
    Shape9.mirror = true;
    setRotation(Shape9, 0F, 0F, 0F);
    Shape10 = new ModelRenderer(this, 0, 0);
    Shape10.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape10.setRotationPoint(6F, 16F, 2F);
    Shape10.setTextureSize(128, 32);
    Shape10.mirror = true;
    setRotation(Shape10, 0F, 0F, 0F);
    Shape11 = new ModelRenderer(this, 0, 0);
    Shape11.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape11.setRotationPoint(6F, 16F, -3F);
    Shape11.setTextureSize(128, 32);
    Shape11.mirror = true;
    setRotation(Shape11, 0F, 0F, 0F);
    Shape12 = new ModelRenderer(this, 0, 0);
    Shape12.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape12.setRotationPoint(-7F, 16F, 2F);
    Shape12.setTextureSize(128, 32);
    Shape12.mirror = true;
    setRotation(Shape12, 0F, 0F, 0F);
    Shape13 = new ModelRenderer(this, 0, 0);
    Shape13.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape13.setRotationPoint(-7F, 16F, -3F);
    Shape13.setTextureSize(128, 32);
    Shape13.mirror = true;
    setRotation(Shape13, 0F, 0F, 0F);
    Shape14 = new ModelRenderer(this, 0, 0);
    Shape14.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape14.setRotationPoint(2F, 16F, -3F);
    Shape14.setTextureSize(128, 32);
    Shape14.mirror = true;
    setRotation(Shape14, 0F, 0F, 0F);
    Shape15 = new ModelRenderer(this, 0, 0);
    Shape15.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape15.setRotationPoint(2F, 16F, 2F);
    Shape15.setTextureSize(128, 32);
    Shape15.mirror = true;
    setRotation(Shape15, 0F, 0F, 0F);
    Shape16 = new ModelRenderer(this, 0, 0);
    Shape16.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape16.setRotationPoint(-3F, 16F, -3F);
    Shape16.setTextureSize(128, 32);
    Shape16.mirror = true;
    setRotation(Shape16, 0F, 0F, 0F);
    Shape17 = new ModelRenderer(this, 0, 0);
    Shape17.addBox(0F, 0F, 0F, 1, 7, 1);
    Shape17.setRotationPoint(-3F, 16F, 2F);
    Shape17.setTextureSize(128, 32);
    Shape17.mirror = true;
    setRotation(Shape17, 0F, 0F, 0F);
    }

    public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)
    {
    super.render(entity, f, f1, f2, f3, f4, f5);
    setRotationAngles(f, f1, f2, f3, f4, f5, entity);
    Shape1.render(f5);
    Shape2.render(f5);
    Shape3.render(f5);
    Shape4.render(f5);
    Shape6.render(f5);
    Shape5.render(f5);
    Shape7.render(f5);
    Shape8.render(f5);
    Shape9.render(f5);
    Shape10.render(f5);
    Shape11.render(f5);
    Shape12.render(f5);
    Shape13.render(f5);
    Shape14.render(f5);
    Shape15.render(f5);
    Shape16.render(f5);
    Shape17.render(f5);
    }

    public void renderModel(float f){
    Shape1.render(f);
    Shape2.render(f);
    Shape3.render(f);
    Shape4.render(f);
    Shape6.render(f);
    Shape5.render(f);
    Shape7.render(f);
    Shape8.render(f);
    Shape9.render(f);
    Shape10.render(f);
    Shape11.render(f);
    Shape12.render(f);
    Shape13.render(f);
    Shape14.render(f);
    Shape15.render(f);
    Shape16.render(f);
    Shape17.render(f);
    }

    private void setRotation(ModelRenderer model, float x, float y, float z)
    {
    model.rotateAngleX = x;
    model.rotateAngleY = y;
    model.rotateAngleZ = z;
    }

    public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5, Entity entity)
    {
    super.setRotationAngles(f, f1, f2, f3, f4, f5, entity);
    }

    }

    My RendererSpikes:


    package com.random.main;

    import net.minecraft.block.Block;
    import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
    import net.minecraft.entity.Entity;
    import net.minecraft.tileentity.TileEntity;
    import net.minecraft.util.ResourceLocation;
    import net.minecraft.world.World;

    import org.lwjgl.opengl.GL11;

    public class RendererSpikes extends TileEntitySpecialRenderer{

    private static final ResourceLocation texturePath = new ResourceLocation(Random.MODID + ":" + "textures/models/spikes.png");

    private ModelSpikes model;

    public RendererSpikes(){
    this.model = new ModelSpikes();
    }

    public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {



    System.out.println("TileEntityRenderer Loaded"); //<--- Does not print :(

    GL11.glPushMatrix();


    GL11.glTranslatef((float)x+0.5F, (float)y+1.5F, (float)z+0.5F);
    GL11.glRotatef(180, 0F, 0F, 1F);
    this.bindTexture(texturePath);


    GL11.glPushMatrix();

    this.model.renderModel(0.0625F);

    GL11.glPopMatrix();


    GL11.glPopMatrix();
    }

    }

    ClientProxy:


    package com.random.proxy;

    import com.random.main.ItemRendererSpikes;
    import com.random.main.Random;
    import com.random.main.RendererSpikes;
    import com.random.main.TileEntitySpikes;

    import cpw.mods.fml.client.registry.ClientRegistry;
    import cpw.mods.fml.client.registry.RenderingRegistry;
    import cpw.mods.fml.common.Mod.EventHandler;
    import cpw.mods.fml.common.registry.EntityRegistry;
    import cpw.mods.fml.common.registry.GameRegistry;
    import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
    import net.minecraft.item.Item;
    import net.minecraftforge.common.MinecraftForge;

    public class ClientProxy extends CommonProxy{


    @Override
    public void registerRenderThings(){
    System.out.println("Random Mod: ClientProxy loaded");
    ClientRegistry.bindTileEntitySpecialRenderer(TileEntitySpikes.class, new RendererSpikes());
    }

    }

    My CommonProxy:


    package com.random.proxy;



    public class CommonProxy {


    public void registerRenderThings(){

    }

    }

    Thanks in advance.
    If you need anymore information, ask.

    PS: There is no crash.
    Posted in: Modification Development
  • 0

    posted a message on /tellraw in Snapshot 14w21b
    Hello I have a problem with /tellraw. This is my command:
    tellraw @a {text:"Steve was slain by Herobrine using ",extra:[text:"[Iron Hoe]",color:blue,hoverEvent:{action:{show_item,value:"id:minecraft:iron_hoe,tag:{ench:{id:16,lvl:2}}}}]}

    Output is:
    [XX:XX:XX] Invalid json: Unterminated array at line 1 column 57
    Posted in: Recent Updates and Snapshots
  • 0

    posted a message on ✰Fatality Prison✰ »Factions‡Plots‡RolePlay‡Riots«
    Name:
    Dogukan Özlü

    In Game Name:
    addogukan5

    Age:
    14

    TeamSpeak or Skype:
    addogukan5

    What rank are you?:
    Representative

    How long have you played on the server?:
    For a couple of months. I play 1-7 hours a day on theserver.

    Where did you find the server?:
    From a friend named KaizoPvP.

    Who is your favorite staff member on the server?:
    Slappygilmore

    What do you like most about your favorite staff member?:
    His kindness :)

    Which staff member do you aim to be most like?:
    I don't really know.

    What's your favorite quality from the server:
    PvP or Chatting

    What's your best memory on the server?:
    Getting help from guards.


    What's your best Minecraft memory?:
    Aprilfool's Day 2014

    Why are you applying for a position as a guard?:
    Because I want to help people out and also I justlike being a guard. :)

    Why should we choose you out of every other player on the server?:
    I don't really care if you choose me or not, I just want to help people out ^^

    What's your most important feature?:
    Chatting or Stopping fighting in chats also I am honest andfriendly, I never curse and I'm trustable.

    How long did it take you to fill out this application?:
    About 20 minutes.
    Posted in: PC Servers
  • 0

    posted a message on Set Max Stack Size to Blocks?
    Quote from Draco18s

    You would need to write your own ItemBlock class.

    Thanks :)
    Posted in: Modification Development
  • 0

    posted a message on Set Max Stack Size to Blocks?
    Hello, is there a way to set the max stack size of a Block to 1.
    I already know how to set the max stack size of Items, but not on Blocks.
    All I know is .setMaxStackSize(1)
    Posted in: Modification Development
  • 0

    posted a message on Minecraft closes for no reason?
    Does nobody know the problem??
    Posted in: Discussion
  • 0

    posted a message on Minecraft closes for no reason?
    Hello, I have a Problem. My Minecraft always closes for no reason when im playing it for like 10 minutes.
    System:

    Rating: 5,8 Windows Experience Index
    Processor: AMD Athlon™ 64 X2 Dual Core Processor 5000+ 2.61 GHz
    Installed memory (RAM): 2,00 GB
    System type: 32-bit Operating System
    Pen and Touch: No Pen or Touch Input is available for this Display
    There appears no error window or no blackscreen. There is just a txt on my desktop called 'hs_err_pid7680'
    Inside of it:

    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x4d45f3d4, pid=7680, tid=9804
    #
    # JRE version: 7.0_11-b21
    # Java VM: Java HotSpot™ Client VM (23.6-b04 mixed mode windows-x86 )
    # Problematic frame:
    # C 0x4d45f3d4
    #
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    #
    # If you would like to submit a bug report, please visit:
    # http://bugreport.sun...eport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    #

    --------------- T H R E A D ---------------

    Current thread (0x4a8b0400): JavaThread "Minecraft main thread" daemon [_thread_in_native, id=9804, stack(0x4d7c0000,0x4d810000)]

    siginfo: ExceptionCode=0xc0000005, reading address 0x3d2e4dcc

    Registers:
    EAX=0x3d2e4dcc, EBX=0x00000000, ECX=0x00000000, EDX=0x6e53eb3c
    ESP=0x4d80e808, EBP=0x4d80e818, ESI=0x4eaf0000, EDI=0x4eb1b238
    EIP=0x4d45f3d4, EFLAGS=0x00010202

    Top of Stack: (sp=0x4d80e808)
    0x4d80e808: 5aa3d9bf 00000000 3d2e4dcc 4eb1b0c8
    0x4d80e818: 4d80e864 5b07bb5b 00000000 3d2e4dcc
    0x4d80e828: 4eaf0000 00001a6d 000024b8 00000000
    0x4d80e838: 00000000 5b234eeb 00000000 00000000
    0x4d80e848: 00000000 00000000 4eaf0000 4eb70020
    0x4d80e858: 00000309 00001a6d 00000078 4d80e878
    0x4d80e868: 5b02523a 4d80e8b4 00000000 4a8b0400
    0x4d80e878: 4d80e8c8 4d748923 00000007 00000000

    Instructions: (pc=0x4d45f3d4)
    0x4d45f3b4: 00 00 00 00 c0 ff ff ff 80 00 00 00 81 0d e8 b7
    0x4d45f3c4: b4 4e 00 01 00 00 8b 44 24 08 8b 15 d8 b7 b4 4e
    0x4d45f3d4: 8b 08 8b 40 04 89 4a 1c 89 42 20 c2 08 00 00 00
    0x4d45f3e4: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00


    Register to memory mapping:

    EAX=0x3d2e4dcc is an unallocated location in the heap
    EBX=0x00000000 is an unknown value
    ECX=0x00000000 is an unknown value
    EDX=0x6e53eb3c is an unknown value
    ESP=0x4d80e808 is pointing into the stack for thread: 0x4a8b0400
    EBP=0x4d80e818 is pointing into the stack for thread: 0x4a8b0400
    ESI=0x4eaf0000 is an unknown value
    EDI=0x4eb1b238 is an unknown value


    Stack: [0x4d7c0000,0x4d810000], sp=0x4d80e808, free space=314k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x4d45f3d4
    C [nvoglv32.DLL+0x77bb5b]
    C [nvoglv32.DLL+0x72523a]
    C [lwjgl.dll+0x8923] Java_org_lwjgl_opengl_NVHalfFloat_nglMultiTexCoord2hNV+0x13
    J net.minecraft.client.renderer.Tessellator.func_78381_a()I
    v ~StubRoutines::call_stub
    V [jvm.dll+0x12a3ba]
    V [jvm.dll+0x1d97de]
    V [jvm.dll+0x12a5a3]
    V [jvm.dll+0x12a607]
    V [jvm.dll+0xd315f]
    V [jvm.dll+0x14a6b7]
    V [jvm.dll+0x14a820]
    V [jvm.dll+0x17f009]
    C [msvcr100.dll+0x5c6de] endthreadex+0x3a
    C [msvcr100.dll+0x5c788] endthreadex+0xe4
    C [kernel32.dll+0x4ed6c] BaseThreadInitThunk+0x12
    C [ntdll.dll+0x6377b] RtlInitializeExceptionChain+0xef
    C [ntdll.dll+0x6374e] RtlInitializeExceptionChain+0xc2

    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J org.lwjgl.opengl.GL11.nglDrawArrays(IIIJ)V
    J net.minecraft.client.renderer.Tessellator.func_78381_a()I
    J net.minecraft.client.renderer.WorldRenderer.func_78907_a()V
    J net.minecraft.client.renderer.RenderGlobal.func_72716_a(Lnet/minecraft/entity/EntityLiving;Z)Z
    J net.minecraft.client.renderer.EntityRenderer.func_78471_a(FJ)V
    J net.minecraft.client.renderer.EntityRenderer.func_78480_b(F)V
    J net.minecraft.client.Minecraft.func_71411_J()V
    J net.minecraft.client.Minecraft.run()V
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub

    --------------- P R O C E S S ---------------

    Java Threads: ( => current thread )
    0x50cef400 JavaThread "Thread-44" daemon [_thread_in_vm, id=6236, stack(0x53ad0000,0x53b20000)]
    0x50ced400 JavaThread "Thread-43" daemon [_thread_in_vm, id=9820, stack(0x534f0000,0x53540000)]
    0x50ceec00 JavaThread "Thread-42" daemon [_thread_in_vm, id=3188, stack(0x536a0000,0x536f0000)]
    0x50cee800 JavaThread "File IO Thread" daemon [_thread_blocked, id=3856, stack(0x53550000,0x535a0000)]
    0x4a8b1800 JavaThread "Server thread" daemon [_thread_in_Java, id=9976, stack(0x53410000,0x53460000)]
    0x50cec000 JavaThread "Snooper Timer" daemon [_thread_blocked, id=9104, stack(0x52b00000,0x52b50000)]
    0x4a8b1000 JavaThread "Thread-16" daemon [_thread_blocked, id=3196, stack(0x52790000,0x527e0000)]
    0x4a8af000 JavaThread "Thread-15" daemon [_thread_blocked, id=6644, stack(0x52700000,0x52750000)]
    =>0x4a8b0400 JavaThread "Minecraft main thread" daemon [_thread_in_native, id=9804, stack(0x4d7c0000,0x4d810000)]
    0x4a8afc00 JavaThread "Timer hack thread" daemon [_thread_blocked, id=2976, stack(0x4dac0000,0x4db10000)]
    0x4a8ae400 JavaThread "Snooper Timer" daemon [_thread_blocked, id=6784, stack(0x4d9f0000,0x4da40000)]
    0x4a8af800 JavaThread "Thread-9" daemon [_thread_in_native, id=5660, stack(0x4d8e0000,0x4d930000)]
    0x4a818800 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=7604, stack(0x4d2e0000,0x4d330000)]
    0x0136ac00 JavaThread "DestroyJavaVM" [_thread_blocked, id=3140, stack(0x012b0000,0x01300000)]
    0x4a719800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=6468, stack(0x4ca00000,0x4ca50000)]
    0x4a6de000 JavaThread "TimerQueue" daemon [_thread_blocked, id=2152, stack(0x4a0b0000,0x4a100000)]
    0x4a6e1c00 JavaThread "SwingWorker-pool-1-thread-1" daemon [_thread_blocked, id=6852, stack(0x4c760000,0x4c7b0000)]
    0x49ea6400 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3712, stack(0x01900000,0x01950000)]
    0x49ea5c00 JavaThread "AWT-Shutdown" [_thread_blocked, id=1660, stack(0x4a310000,0x4a360000)]
    0x49ea3400 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=8684, stack(0x4a2c0000,0x4a310000)]
    0x49d46000 JavaThread "Service Thread" daemon [_thread_blocked, id=10056, stack(0x4a160000,0x4a1b0000)]
    0x49d2b000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=9896, stack(0x49ba0000,0x49bf0000)]
    0x49d29c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=6900, stack(0x4a040000,0x4a090000)]
    0x49d26800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1452, stack(0x49fc0000,0x4a010000)]
    0x49cd3800 JavaThread "Finalizer" daemon [_thread_blocked, id=9672, stack(0x49f30000,0x49f80000)]
    0x018fbc00 JavaThread "Reference Handler" daemon [_thread_blocked, id=3972, stack(0x49c20000,0x49c70000)]

    Other Threads:
    0x018f7400 VMThread [stack: 0x49c80000,0x49cd0000] [id=9128]
    0x49d5bc00 WatcherThread [stack: 0x01390000,0x013e0000] [id=9460]

    VM state:not at safepoint (normal execution)

    VM Mutex/Monitor currently owned by a thread: None

    Heap
    def new generation total 157376K, used 93499K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 61% used [0x039e0000, 0x08da96c0, 0x0c280000)
    from space 17472K, 44% used [0x0c280000, 0x0ca05608, 0x0d390000)
    to space 17472K, 0% used [0x0d390000, 0x0d390000, 0x0e4a0000)
    tenured generation total 349568K, used 282305K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2e04c8, 0x2a2e0600, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.

    Card table byte_map: [0x497e0000,0x49a10000] byte_map_base: 0x497c3100

    Polling page: 0x00190000

    Code Cache [0x019e0000, 0x027e8000, 0x039e0000)
    total_blobs=7020 nmethods=6571 adapters=378 free_code_cache=18429Kb largest_free_block=18867328

    Compilation events (10 events):
    Event: 849.665 Thread 0x49d2b000 6604 noppes.npcs.gui.utils.GuiPlayerTopMenu::func_73863_a (51 bytes)
    Event: 849.666 Thread 0x49d2b000 nmethod 6604 0x027defc8 code [0x027df110, 0x027df26c]
    Event: 857.317 Thread 0x49d2b000 6605 sun.misc.FormattedFloatingDecimal::developLongDigits (380 bytes)
    Event: 857.319 Thread 0x49d2b000 nmethod 6605 0x027df408 code [0x027df5e0, 0x027dff74]
    Event: 862.365 Thread 0x49d2b000 6606 drzhark.mocreatures.entity.MoCEntityMob::getClosestEntityLiving (152 bytes)
    Event: 862.366 Thread 0x49d2b000 nmethod 6606 0x027e0c88 code [0x027e0e10, 0x027e1154]
    Event: 865.462 Thread 0x49d2b000 6607 codechicken.nei.forge.GuiContainerManager::objectUnderMouse (50 bytes)
    Event: 865.462 Thread 0x49d2b000 nmethod 6607 0x027e1508 code [0x027e1650, 0x027e1810]
    Event: 875.675 Thread 0x49d2b000 6608 net.minecraft.block.BlockDoor::func_71857_b (3 bytes)
    Event: 875.676 Thread 0x49d2b000 nmethod 6608 0x027e19c8 code [0x027e1ac0, 0x027e1b40]

    GC Heap History (10 events):
    Event: 867.537 GC heap before
    {Heap before GC invocations=268 (full 6):
    def new generation total 157376K, used 148504K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 100% used [0x039e0000, 0x0c280000, 0x0c280000)
    from space 17472K, 49% used [0x0d390000, 0x0dbf60f8, 0x0e4a0000)
    to space 17472K, 0% used [0x0c280000, 0x0c280000, 0x0d390000)
    tenured generation total 349568K, used 280169K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a0ca540, 0x2a0ca600, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    Event: 867.561 GC heap after
    Heap after GC invocations=269 (full 6):
    def new generation total 157376K, used 7991K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 0% used [0x039e0000, 0x039e0000, 0x0c280000)
    from space 17472K, 45% used [0x0c280000, 0x0ca4dcf0, 0x0d390000)
    to space 17472K, 0% used [0x0d390000, 0x0d390000, 0x0e4a0000)
    tenured generation total 349568K, used 281215K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a1cfdf8, 0x2a1cfe00, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    }
    Event: 869.891 GC heap before
    {Heap before GC invocations=269 (full 6):
    def new generation total 157376K, used 147895K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 100% used [0x039e0000, 0x0c280000, 0x0c280000)
    from space 17472K, 45% used [0x0c280000, 0x0ca4dcf0, 0x0d390000)
    to space 17472K, 0% used [0x0d390000, 0x0d390000, 0x0e4a0000)
    tenured generation total 349568K, used 281215K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a1cfdf8, 0x2a1cfe00, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    Event: 869.916 GC heap after
    Heap after GC invocations=270 (full 6):
    def new generation total 157376K, used 8669K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 0% used [0x039e0000, 0x039e0000, 0x0c280000)
    from space 17472K, 49% used [0x0d390000, 0x0dc074a8, 0x0e4a0000)
    to space 17472K, 0% used [0x0c280000, 0x0c280000, 0x0d390000)
    tenured generation total 349568K, used 282157K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2bb568, 0x2a2bb600, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    }
    Event: 872.813 GC heap before
    {Heap before GC invocations=270 (full 6):
    def new generation total 157376K, used 148573K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 100% used [0x039e0000, 0x0c280000, 0x0c280000)
    from space 17472K, 49% used [0x0d390000, 0x0dc074a8, 0x0e4a0000)
    to space 17472K, 0% used [0x0c280000, 0x0c280000, 0x0d390000)
    tenured generation total 349568K, used 282157K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2bb568, 0x2a2bb600, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    Event: 872.837 GC heap after
    Heap after GC invocations=271 (full 6):
    def new generation total 157376K, used 8229K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 0% used [0x039e0000, 0x039e0000, 0x0c280000)
    from space 17472K, 47% used [0x0c280000, 0x0ca89400, 0x0d390000)
    to space 17472K, 0% used [0x0d390000, 0x0d390000, 0x0e4a0000)
    tenured generation total 349568K, used 282196K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2c50b8, 0x2a2c5200, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    }
    Event: 875.588 GC heap before
    {Heap before GC invocations=271 (full 6):
    def new generation total 157376K, used 148133K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 100% used [0x039e0000, 0x0c280000, 0x0c280000)
    from space 17472K, 47% used [0x0c280000, 0x0ca89400, 0x0d390000)
    to space 17472K, 0% used [0x0d390000, 0x0d390000, 0x0e4a0000)
    tenured generation total 349568K, used 282196K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2c50b8, 0x2a2c5200, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    Event: 875.610 GC heap after
    Heap after GC invocations=272 (full 6):
    def new generation total 157376K, used 7883K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 0% used [0x039e0000, 0x039e0000, 0x0c280000)
    from space 17472K, 45% used [0x0d390000, 0x0db42e98, 0x0e4a0000)
    to space 17472K, 0% used [0x0c280000, 0x0c280000, 0x0d390000)
    tenured generation total 349568K, used 282250K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2d2828, 0x2a2d2a00, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    }
    Event: 878.538 GC heap before
    {Heap before GC invocations=272 (full 6):
    def new generation total 157376K, used 147787K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 100% used [0x039e0000, 0x0c280000, 0x0c280000)
    from space 17472K, 45% used [0x0d390000, 0x0db42e98, 0x0e4a0000)
    to space 17472K, 0% used [0x0c280000, 0x0c280000, 0x0d390000)
    tenured generation total 349568K, used 282250K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2d2828, 0x2a2d2a00, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    Event: 878.559 GC heap after
    Heap after GC invocations=273 (full 6):
    def new generation total 157376K, used 7701K [0x039e0000, 0x0e4a0000, 0x18f30000)
    eden space 139904K, 0% used [0x039e0000, 0x039e0000, 0x0c280000)
    from space 17472K, 44% used [0x0c280000, 0x0ca05608, 0x0d390000)
    to space 17472K, 0% used [0x0d390000, 0x0d390000, 0x0e4a0000)
    tenured generation total 349568K, used 282305K [0x18f30000, 0x2e490000, 0x439e0000)
    the space 349568K, 80% used [0x18f30000, 0x2a2e04c8, 0x2a2e0600, 0x2e490000)
    compacting perm gen total 30976K, used 30756K [0x439e0000, 0x45820000, 0x479e0000)
    the space 30976K, 99% used [0x439e0000, 0x457e9218, 0x457e9400, 0x45820000)
    No shared spaces configured.
    }

    Deoptimization events (0 events):
    No events

    Internal exceptions (10 events):
    Event: 879.896 Thread 0x4a8af000 Threw 0x07454e30 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 879.937 Thread 0x4a8af000 Threw 0x07cae500 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 879.979 Thread 0x4a8af000 Threw 0x07cae6a0 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 880.023 Thread 0x4a8af000 Threw 0x07cae840 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 880.044 Thread 0x4a8af000 Threw 0x07cae9a0 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 880.044 Thread 0x4a8af000 Threw 0x07f3f028 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 880.044 Thread 0x4a8af000 Threw 0x07f3f188 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 880.044 Thread 0x4a8af000 Threw 0x07f3f2e8 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 880.066 Thread 0x4a8af000 Threw 0x07f3f5c0 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888
    Event: 880.076 Thread 0x4a8af000 Threw 0x07f3f750 at C:\jdk7u1_32P\jdk7u11\hotspot\src\share\vm\prims\jvm.cpp:2888

    Events (10 events):
    Event: 878.623 Thread 0x50cedc00 Thread added: 0x50cedc00
    Event: 878.650 Thread 0x50cedc00 Thread exited: 0x50cedc00
    Event: 879.377 Thread 0x50cedc00 Thread added: 0x50cedc00
    Event: 879.378 Thread 0x50cecc00 Thread added: 0x50cecc00
    Event: 879.378 Thread 0x50cee000 Thread added: 0x50cee000
    Event: 879.413 Thread 0x50cedc00 Thread exited: 0x50cedc00
    Event: 879.424 Thread 0x50cecc00 Thread exited: 0x50cecc00
    Event: 879.429 Thread 0x50cee000 Thread exited: 0x50cee000
    Event: 879.643 Thread 0x50cee000 Thread added: 0x50cee000
    Event: 879.645 Thread 0x50cee000 Thread exited: 0x50cee000


    Dynamic libraries:
    0x01260000 - 0x0128f000 C:\Windows\system32\java.exe
    0x77b90000 - 0x77ccc000 C:\Windows\SYSTEM32\ntdll.dll
    0x77180000 - 0x77254000 C:\Windows\system32\kernel32.dll
    0x75630000 - 0x7567b000 C:\Windows\system32\KERNELBASE.dll
    0x75b10000 - 0x75bb0000 C:\Windows\system32\ADVAPI32.dll
    0x77280000 - 0x7732c000 C:\Windows\system32\msvcrt.dll
    0x77260000 - 0x77279000 C:\Windows\SYSTEM32\sechost.dll
    0x75780000 - 0x75821000 C:\Windows\system32\RPCRT4.dll
    0x75830000 - 0x758f9000 C:\Windows\system32\USER32.dll
    0x75ac0000 - 0x75b0e000 C:\Windows\system32\GDI32.dll
    0x77cd0000 - 0x77cda000 C:\Windows\system32\LPK.dll
    0x76a80000 - 0x76b1d000 C:\Windows\system32\USP10.dll
    0x73f50000 - 0x740ee000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\COMCTL32.dll
    0x75c90000 - 0x75ce7000 C:\Windows\system32\SHLWAPI.dll
    0x75760000 - 0x7577f000 C:\Windows\system32\IMM32.DLL
    0x76ee0000 - 0x76fac000 C:\Windows\system32\MSCTF.dll
    0x6a040000 - 0x6a0fe000 C:\Program Files\Java\jre7\bin\msvcr100.dll
    0x65360000 - 0x656ac000 C:\Program Files\Java\jre7\bin\client\jvm.dll
    0x6f780000 - 0x6f787000 C:\Windows\system32\WSOCK32.dll
    0x76d80000 - 0x76db5000 C:\Windows\system32\WS2_32.dll
    0x76a70000 - 0x76a76000 C:\Windows\system32\NSI.dll
    0x710f0000 - 0x71122000 C:\Windows\system32\WINMM.dll
    0x75cf0000 - 0x75cf5000 C:\Windows\system32\PSAPI.DLL
    0x74720000 - 0x7472c000 C:\Program Files\Java\jre7\bin\verify.dll
    0x709c0000 - 0x709e0000 C:\Program Files\Java\jre7\bin\java.dll
    0x720c0000 - 0x720d3000 C:\Program Files\Java\jre7\bin\zip.dll
    0x66690000 - 0x667d2000 C:\Program Files\Java\jre7\bin\awt.dll
    0x76c90000 - 0x76d1f000 C:\Windows\system32\OLEAUT32.dll
    0x76b30000 - 0x76c8c000 C:\Windows\system32\ole32.dll
    0x75330000 - 0x7533c000 C:\Windows\system32\CRYPTBASE.dll
    0x75d00000 - 0x7694a000 C:\Windows\system32\SHELL32.dll
    0x73b20000 - 0x73b33000 C:\Windows\system32\DWMAPI.DLL
    0x6c400000 - 0x6c5c3000 C:\Windows\system32\d3d9.dll
    0x74990000 - 0x74999000 C:\Windows\system32\VERSION.dll
    0x6f930000 - 0x6f936000 C:\Windows\system32\d3d8thk.dll
    0x5fca0000 - 0x60b0f000 C:\Windows\system32\nvd3dum.dll
    0x74250000 - 0x74275000 C:\Windows\system32\powrprof.dll
    0x76fe0000 - 0x7717d000 C:\Windows\system32\SETUPAPI.dll
    0x75680000 - 0x756a7000 C:\Windows\system32\CFGMGR32.dll
    0x75460000 - 0x75472000 C:\Windows\system32\DEVOBJ.dll
    0x4bf30000 - 0x4c03a000 C:\Program Files\NVIDIA Corporation\3D Vision\nvSCPAPI.dll
    0x708f0000 - 0x7091a000 C:\Program Files\Java\jre7\bin\fontmanager.dll
    0x709a0000 - 0x709b4000 C:\Program Files\Java\jre7\bin\net.dll
    0x01350000 - 0x01355000 C:\Windows\system32\mswsock.dll
    0x74e20000 - 0x74e5c000 \\.\globalroot\systemroot\system32\mswsock.dll
    0x74e10000 - 0x74e16000 C:\Windows\System32\wship6.dll
    0x74710000 - 0x7471f000 C:\Program Files\Java\jre7\bin\nio.dll
    0x74cc0000 - 0x74d04000 C:\Windows\system32\DNSAPI.dll
    0x70250000 - 0x70260000 C:\Windows\system32\napinsp.dll
    0x6fbc0000 - 0x6fbd2000 C:\Windows\system32\pnrpnsp.dll
    0x6fb90000 - 0x6fb98000 C:\Windows\System32\winrnr.dll
    0x70610000 - 0x70637000 C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLIDNSP.DLL
    0x73670000 - 0x7368c000 C:\Windows\system32\IPHLPAPI.DLL
    0x73630000 - 0x73637000 C:\Windows\system32\WINNSI.DLL
    0x70600000 - 0x70606000 C:\Windows\system32\rasadhlp.dll
    0x74880000 - 0x74885000 C:\Windows\System32\wshtcpip.dll
    0x74e60000 - 0x74e76000 C:\Windows\system32\CRYPTSP.dll
    0x74be0000 - 0x74c1b000 C:\Windows\system32\rsaenh.dll
    0x74a00000 - 0x74a17000 C:\Windows\system32\USERENV.dll
    0x753e0000 - 0x753eb000 C:\Windows\system32\profapi.dll
    0x708d0000 - 0x708f0000 C:\Program Files\Java\jre7\bin\sunec.dll
    0x6be60000 - 0x6be91000 C:\Program Files\Java\jre7\bin\t2k.dll
    0x75bb0000 - 0x75c33000 C:\Windows\system32\CLBCatQ.DLL
    0x73760000 - 0x73890000 C:\Windows\system32\WindowsCodecs.dll
    0x752e0000 - 0x7532c000 C:\Windows\system32\apphelp.dll
    0x71d50000 - 0x71d86000 C:\Users\User\AppData\Local\Microsoft\SkyDrive\17.0.2003.1112\SkyDriveShell.dll
    0x71390000 - 0x71415000 C:\Users\User\AppData\Local\Microsoft\SkyDrive\17.0.2003.1112\MSVCP110.dll
    0x70d60000 - 0x70e32000 C:\Users\User\AppData\Local\Microsoft\SkyDrive\17.0.2003.1112\MSVCR110.dll
    0x71300000 - 0x71387000 C:\Users\User\AppData\Local\Microsoft\SkyDrive\17.0.2003.1112\Telemetry.dll
    0x73330000 - 0x7333a000 C:\Users\User\AppData\Local\Microsoft\SkyDrive\17.0.2003.1112\logging.dll
    0x70d00000 - 0x70d52000 C:\Windows\system32\faultrep.dll
    0x71c40000 - 0x71c55000 C:\Windows\system32\Cabinet.dll
    0x6f7f0000 - 0x6f848000 C:\Windows\system32\WINHTTP.dll
    0x6f7a0000 - 0x6f7ef000 C:\Windows\system32\webio.dll
    0x73af0000 - 0x73b1f000 C:\Windows\system32\XmlLite.dll
    0x76950000 - 0x76a6b000 C:\Windows\system32\WININET.dll
    0x76b20000 - 0x76b23000 C:\Windows\system32\Normaliz.dll
    0x75900000 - 0x75ab9000 C:\Windows\system32\iertutil.dll
    0x76dc0000 - 0x76ed1000 C:\Windows\system32\urlmon.dll
    0x712c0000 - 0x712f1000 C:\Windows\system32\EhStorShell.dll
    0x74150000 - 0x74245000 C:\Windows\system32\PROPSYS.dll
    0x6a550000 - 0x6a95a000 C:\PROGRA~1\MIF5BA~1\Office14\GROOVEEX.DLL
    0x70550000 - 0x705f3000 C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll
    0x70450000 - 0x704de000 C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll
    0x71130000 - 0x7115b000 C:\Windows\WinSxS\x86_microsoft.vc90.atl_1fc8b3b9a1e18e3b_9.0.30729.6161_none_51cd0a7abbe4e19b\ATL90.DLL
    0x73de0000 - 0x73e20000 C:\Windows\system32\UxTheme.dll
    0x6ab70000 - 0x6af7f000 C:\PROGRA~1\COMMON~1\MICROS~1\OFFICE14\Cultures\office.odf
    0x68790000 - 0x68ff4000 C:\PROGRA~1\MIF5BA~1\Office14\1033\GrooveIntlResource.dll
    0x70a40000 - 0x70aaa000 C:\Windows\System32\cscui.dll
    0x72f30000 - 0x72f39000 C:\Windows\System32\CSCDLL.dll
    0x70270000 - 0x7027b000 C:\Windows\system32\CSCAPI.dll
    0x68520000 - 0x68590000 C:\Windows\system32\ntshrui.dll
    0x75200000 - 0x75219000 C:\Windows\system32\srvcli.dll
    0x73750000 - 0x7375a000 C:\Windows\system32\slc.dll
    0x73c40000 - 0x73c49000 C:\Program Files\Java\jre7\bin\sunmscapi.dll
    0x75510000 - 0x7562e000 C:\Windows\system32\CRYPT32.dll
    0x75450000 - 0x7545c000 C:\Windows\system32\MSASN1.dll
    0x725b0000 - 0x72634000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_ec83dffa859149af\comctl32.dll
    0x70870000 - 0x70894000 C:\Program Files\Java\jre7\bin\dcpr.dll
    0x4d740000 - 0x4d7ab000 C:\Users\User\AppData\Roaming\.minecraft\bin\natives\lwjgl.dll
    0x697f0000 - 0x698b8000 C:\Windows\system32\OPENGL32.dll
    0x6f540000 - 0x6f562000 C:\Windows\system32\GLU32.dll
    0x65d40000 - 0x65e27000 C:\Windows\system32\DDRAW.dll
    0x6b5a0000 - 0x6b5a6000 C:\Windows\system32\DCIMAN32.dll
    0x735f0000 - 0x735f6000 C:\Program Files\Java\jre7\bin\jawt.dll
    0x5a900000 - 0x5bca7000 C:\Windows\system32\nvoglv32.DLL
    0x756b0000 - 0x756dd000 C:\Windows\system32\WINTRUST.dll
    0x74900000 - 0x74921000 C:\Windows\system32\ntmarta.dll
    0x75c40000 - 0x75c85000 C:\Windows\system32\WLDAP32.dll
    0x72c40000 - 0x72c4a000 C:\Program Files\Java\jre7\bin\management.dll
    0x66560000 - 0x66689000 C:\Users\User\AppData\Roaming\.minecraft\bin\natives\OpenAL32.dll
    0x6aa80000 - 0x6aaf2000 C:\Windows\system32\dsound.dll
    0x740f0000 - 0x74129000 C:\Windows\System32\MMDevApi.dll
    0x70cd0000 - 0x70d00000 C:\Windows\system32\wdmaud.drv
    0x74770000 - 0x74774000 C:\Windows\system32\ksuser.dll
    0x745f0000 - 0x745f7000 C:\Windows\system32\AVRT.dll
    0x74730000 - 0x74766000 C:\Windows\system32\AUDIOSES.DLL
    0x73b40000 - 0x73b48000 C:\Windows\system32\msacm32.drv
    0x747e0000 - 0x747f4000 C:\Windows\system32\MSACM32.dll
    0x72f90000 - 0x72f97000 C:\Windows\system32\midimap.dll
    0x6b2f0000 - 0x6b31d000 C:\Program Files\Java\jre7\bin\kcms.dll
    0x532f0000 - 0x533db000 C:\Windows\system32\dbghelp.dll

    VM Arguments:
    jvm_args: -Xmx1024M -Xms512M
    java_command: Spiele/Minecraft.exe
    Launcher Type: SUN_STANDARD

    Environment Variables:
    PATH=C:\Windows\system32;C:\Windows; ables:
    õ  °)m”߀M4]¾wc]¾w›½r# À¬7  ð* 8à€M  °)m :=' ¡   ð* v  @ °)mü߀M$e¾w8 e¾wó½r  °)m¨òÆnù øH¥Nl ÿ Ð’Yð* Ð’Y  ð*   ð*  °)mù øö §Æw  °)mö y °)m þ þv @úH ]l(à€Mô߀M @ú@+ ð*  H¥N°)m Ð’Y' ¡ ö “  °  ߀M à€M4ä€Máºw'w,Hþÿÿÿ e¾w6e¾w °)m@ge€á€M °)m\à€Mø}cu  °)mÐ    $‹`e“ Ð@ge & °)m“ tà€Mö–
    USERNAME=User
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 107 Stepping 2, AuthenticAMD



    --------------- S Y S T E M ---------------

    OS: Windows 7 Build 7601 Service Pack 1

    CPU:total 2 (2 cores per cpu, 1 threads per core) family 15 model 107 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, mmxext, 3dnowpref, tsc

    Memory: 4k page, physical 2096376k(482820k free), swap 5012448k(2561684k free)

    vm_info: Java HotSpot™ Client VM (23.6-b04) for windows-x86 JRE (1.7.0_11-b21), built on Jan 12 2013 02:19:22 by "java_re" with unknown MS VC++:1600

    time: Sun Jun 09 20:13:15 2013
    elapsed time: 880 seconds


    Thanks in advance

    - addogukan5
    Posted in: Discussion
  • 0

    posted a message on [DISCONTINUED][1.5.2] Spohh Mod - New items, New ore, new armor, new tools!
    Quote from KaizoPLay4

    You're spamming so many posts, dude.
    Just add them in the main post. ;)

    :D
    Posted in: WIP Mods
  • 0

    posted a message on [DISCONTINUED][1.5.2] Spohh Mod - New items, New ore, new armor, new tools!
    Should I add Spohh Wood? :D
    Posted in: WIP Mods
  • 0

    posted a message on A game like no others before it...
    I love minecraft :Bacon: I just :Ham: Minecraft :D
    Posted in: Discussion
  • 0

    posted a message on [DISCONTINUED][1.5.2] Spohh Mod - New items, New ore, new armor, new tools!
    Now with a website here :D
    Posted in: WIP Mods
  • To post a comment, please .