Salut tout le monde,
J'explique mon problème, j'ai créer un nouveau minerai mais je n'arrive pas a l'insérer automatiquement, pourtant j'ai fait (fin je croit avoir fait) le bon codage, mais j'ai beau chercher comme un dingue le minerai je ne le trouve pas. Quelqu'un a une solution ?
Voici mon code:
J'explique mon problème, j'ai créer un nouveau minerai mais je n'arrive pas a l'insérer automatiquement, pourtant j'ai fait (fin je croit avoir fait) le bon codage, mais j'ai beau chercher comme un dingue le minerai je ne le trouve pas. Quelqu'un a une solution ?
Voici mon code:
Code:
package net.minecraft.src;
import java.util.Random;
public class mod_modobsirithe extends BaseMod
{
public mod_modobsirithe()
{
ModLoader.RegisterBlock(obsirithe);
ModLoader.AddName(obsirithe, "obsirithe");
ModLoader.AddRecipe(new ItemStack(obsirithe, 1), new Object[]
{"#",Character.valueOf('#'), obsirithe});
}
public static final Block obsirithe = (new
Blockobsirithe(99,ModLoader.addOverride("/terrain.png", "/Texture/obsirithe.png"))).setHardness(5.0F).setResistance(10F)
.setStepSound(Block.soundStoneFootstep).setBlockName("obirithe");
public String Version()
{
return "1.7.3";
}
public void GenerateSurface(World world, Random rand, int chunkX, int chunkZ)
{
for(int i = 0; i < 4; i++)
{
int randPosX = 16;
int randPosY = 30;
int randPosZ = 16;
(new WorldGenMinable(obsirithe, 1)).generate(
world, rand, randPosX, randPosY, randPosZ);
}
}
}