Jump to content

Black screen after installing Forge


rock0520

Recommended Posts

I recently installed latest forge for 1.3.2 and for some reason after the pop comes up and loads forge after login the screen stays black and the game doesn't start. I keep force updating and installing forge again and agian but it won't work. Yes i'm sure i have installed it correctly and deleted META-INF.

Could someone please help?

Link to comment
Share on other sites

  • 2 months later...

hello,

 

i am trying to make it so when my block "testblock" is broken by my "testitemtool" it will drop eg.redstone but if it is not broken by the "testitemtool" it would drop nothing.

 

I dont know how to do this if you could help i would be very greatful

 

 

My "testblocktool"

package test_common.sidthesloth.main;

import net.minecraft.src.Block;
import net.minecraft.src.Item;
import net.minecraft.src.EntityPlayer;
import net.minecraft.src.Material;
import net.minecraft.src.World;

public class testblock extends Block {

public testblock (int id, int texture, Material material) {
	super(id, texture, material);
}


@Override
public String getTextureFile () {
	return CommonProxy.BLOCK_PNG;
}

}

 

 

"testitem"

package test_common.sidthesloth.main;

import net.minecraft.src.Item;

public class testitemtool extends Item {

public testitem(int id) {
	super(id);
	// TODO Auto-generated constructor stub
}

}

Link to comment
Share on other sites

  • 1 year later...

Hello guys! I am working on a dinosaur mod, and I've started doing some 3d models. Actually, this is my question,

I'm trying to create some good models that fit in minecraft, so I would like some opinions about this one here,

which is a generic small theropod:

 

dino.png

 

Just for reference, I based my model on this image:

 

Compsognathus-skeleton-Bruce-Mohn-1500.jpg

 

If you have any idea, I can definitely think about it! :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.