MFF

    Minecraft Forge France
    • Récent
    • Mots-clés
    • Populaire
    • Utilisateurs
    • Groupes
    • Forge Events
      • Automatique
      • Foncé
      • Clair
    • S'inscrire
    • Se connecter

    Questions : CustomMenu + Bug touche

    Planifier Épinglé Verrouillé Déplacé Résolu 1.7.x
    1.7.10
    55 Messages 4 Publieurs 12.8k Vues 1 Watching
    Charger plus de messages
    • Du plus ancien au plus récent
    • Du plus récent au plus ancien
    • Les plus votés
    Répondre
    • Répondre à l'aide d'un nouveau sujet
    Se connecter pour répondre
    Ce sujet a été supprimé. Seuls les utilisateurs avec les droits d'administration peuvent le voir.
    • Benjamin LoisonB Hors-ligne
      Benjamin Loison
      dernière édition par

      J’ai ce crash-report : http://pastebin.com/zLEEwtki

      voilà les classes de mon bloclampadaire :

      ​package fr.altiscraft.altiscraft.common;
      
      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;
      import cpw.mods.fml.relauncher.Side;
      import cpw.mods.fml.relauncher.SideOnly;
      import fr.altiscraft.altiscraft.proxy.ClientProxy;
      
      public class BlocLampadaire extends Block {
      
      protected BlocLampadaire() {
      super(Material.ground);
      }
      
      @Override
      public boolean hasTileEntity(int metadata) {
      return true;
      }
      
      @Override
      public TileEntity createTileEntity(World world, int metadata) {
      return new TileEntityLampadaire();
      }
      
      public boolean isOpaqueCube() {
      return false;
      }
      
      public boolean renderAsNormalBlock() {
      return false;
      }
      
          @SideOnly(Side.CLIENT)
      public int getRenderType() {
      return ClientProxy.tesrRenderId;
      }
      
      public void setBlockBoundsBasedOnState(IBlockAccess world, int x, int y,
      int z) {
      this.setBlockBounds(0.45F, 0.0F, 0.45F, 0.55F, 1.0F, 0.55F);
      }
      }
      
      
      ​package fr.altiscraft.altiscraft.proxy;
      
      import net.minecraft.block.Block;
      import net.minecraft.client.Minecraft;
      import net.minecraft.client.renderer.RenderBlocks;
      import net.minecraft.world.IBlockAccess;
      
      import org.lwjgl.opengl.GL11;
      
      import cpw.mods.fml.client.registry.ISimpleBlockRenderingHandler;
      import fr.altiscraft.altiscraft.common.ModAltisCraft;
      
      public class TESRInventoryRenderer implements ISimpleBlockRenderingHandler {
      
      @Override
      public void renderInventoryBlock(Block block, int metadata, int modelId,
      RenderBlocks renderer) {
      if (block == ModAltisCraft.BlocATM) {
      GL11.glPushMatrix();
      GL11.glRotatef(270.0F, 0.0F, 1.0F, 0.0F);
      GL11.glTranslatef(0.0F, -1.0F, 0.0F);
      Minecraft.getMinecraft().getTextureManager()
      .bindTexture(TileEntityATMSpecialRenderer.texture);
      TileEntityATMSpecialRenderer.model.renderAll();
      GL11.glPopMatrix();
      }
      
      else if (block == ModAltisCraft.BlocVLampadaire) {
      GL11.glPushMatrix();
      GL11.glRotatef(270.0F, 0.0F, 1.0F, 0.0F);
             GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
      GL11.glTranslatef(0.0F, -1.0F, 0.0F);
      Minecraft.getMinecraft().getTextureManager()
      .bindTexture(TileEntityVLampadaireSpecialRenderer.texturev);
      TileEntityVLampadaireSpecialRenderer.modelv.renderAll();
      GL11.glPopMatrix();
      }
      
      else if (block == ModAltisCraft.BlocCoco) {
      GL11.glPushMatrix();
      GL11.glRotatef(270.0F, 0.0F, 1.0F, 0.0F);
      GL11.glTranslatef(0.0F, -1.0F, 0.0F);
      Minecraft.getMinecraft().getTextureManager()
      .bindTexture(TileEntityCocoSpecialRenderer.textures);
      TileEntityCocoSpecialRenderer.models.renderAll();
      GL11.glPopMatrix();
      }
      
      else if (block == ModAltisCraft.BlocLampadaire) {
      GL11.glPushMatrix();
      GL11.glRotatef(270.0F, 0.0F, 1.0F, 0.0F);
      GL11.glTranslatef(0.0F, -1.0F, 0.0F);
      Minecraft.getMinecraft().getTextureManager()
      .bindTexture(TileEntityCocoSpecialRenderer.texturesb);
      TileEntityCocoSpecialRenderer.modelsb.renderAll();
      GL11.glPopMatrix();
      }
      }
      
      @Override
      public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z,
      Block block, int modelId, RenderBlocks renderer) {
      return false;
      }
      
      @Override
      public int getRenderId() {
      return ClientProxy.tesrRenderId;
      }
      
      @Override
      public boolean shouldRender3DInInventory(int modelId) {
      return true;
      }
      }
      
      
      ​package fr.altiscraft.altiscraft.proxy;
      
      import net.minecraft.client.Minecraft;
      import net.minecraft.client.gui.GuiMainMenu;
      import net.minecraft.client.gui.GuiScreen;
      import net.minecraft.client.model.ModelBiped;
      import net.minecraft.client.settings.KeyBinding;
      import net.minecraft.util.ResourceLocation;
      import net.minecraft.util.StringUtils;
      import cpw.mods.fml.client.FMLClientHandler;
      import cpw.mods.fml.client.registry.ClientRegistry;
      import cpw.mods.fml.client.registry.RenderingRegistry;
      import cpw.mods.fml.common.FMLCommonHandler;
      import cpw.mods.fml.common.eventhandler.SubscribeEvent;
      import cpw.mods.fml.common.gameevent.InputEvent.KeyInputEvent;
      import fr.altiscraft.altiscraft.common.EntityMobBenjaminLoison;
      import fr.altiscraft.altiscraft.common.GuiCustomMainMenu;
      import fr.altiscraft.altiscraft.common.RenderMobBenjaminLoison;
      import fr.altiscraft.altiscraft.common.TileEntityATM;
      import fr.altiscraft.altiscraft.common.TileEntityCoco;
      import fr.altiscraft.altiscraft.common.TileEntityLampadaire;
      import fr.altiscraft.altiscraft.common.TileEntityVLampadaire;
      
      public class ClientProxy extends CommonProxy {
      Minecraft mc = Minecraft.getMinecraft();
      public static int tesrRenderId;
      
      @Override
      public void registerRender() {
      FMLCommonHandler.instance().bus().register(this);
      System.out.println("Méthode côté client");
      RenderingRegistry.registerEntityRenderingHandler(
      EntityMobBenjaminLoison.class, new RenderMobBenjaminLoison(
      new ModelBiped()));
      
      ClientRegistry.registerKeyBinding(keyBindTest);
      
      ClientRegistry.bindTileEntitySpecialRenderer(TileEntityATM.class,
      new TileEntityATMSpecialRenderer());
      ClientRegistry.bindTileEntitySpecialRenderer(TileEntityCoco.class,
      new TileEntityCocoSpecialRenderer());
      ClientRegistry.bindTileEntitySpecialRenderer(
      TileEntityLampadaire.class,
      new TileEntityLampadaireSpecialRenderer());
      ClientRegistry.bindTileEntitySpecialRenderer(
      TileEntityVLampadaire.class,
      new TileEntityVLampadaireSpecialRenderer());
      tesrRenderId = RenderingRegistry.getNextAvailableRenderId();
      RenderingRegistry.registerBlockHandler(new TESRInventoryRenderer());
      }
      
      private static KeyBinding keyBindTest = new KeyBinding("altiscraft.inventaire", 21, "key.categories.inventory");
      
      // @SubscribeEvent
      //    @SideOnly(Side.CLIENT)
      //    public void onTick(TickEvent.ClientTickEvent event)
          {
              Minecraft mc = FMLClientHandler.instance().getClient();
              GuiScreen currentScreen = mc.currentScreen;
              if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiMainMenu.class))
              {
                  mc.displayGuiScreen(new GuiCustomMainMenu());
              }
            }
      
      @SubscribeEvent
      public void onEvent(KeyInputEvent event) {
      
      if (keyBindTest.isPressed()) {
      keyTestTyped();
      }
      }
      
      private void keyTestTyped() {
      Minecraft.getMinecraft().thePlayer
      .sendChatMessage((new StringBuilder()).append("/inventaire")
      .toString());
      Minecraft.getMinecraft();
      }
      
      public static ResourceLocation getLocationSkin(String Skin) {
      return new ResourceLocation("skins/"
      + StringUtils.stripControlCodes(Skin));
      }
      }
      
      ​package fr.altiscraft.altiscraft.common;
      
      import java.io.File;
      
      import net.minecraft.block.Block;
      import net.minecraft.block.material.Material;
      import net.minecraft.client.Minecraft;
      import net.minecraft.creativetab.CreativeTabs;
      import net.minecraft.item.Item;
      import net.minecraft.item.Item.ToolMaterial;
      import net.minecraft.item.ItemArmor.ArmorMaterial;
      import net.minecraft.item.ItemStack;
      import net.minecraft.potion.Potion;
      import net.minecraft.potion.PotionEffect;
      import net.minecraft.util.ResourceLocation;
      import net.minecraftforge.common.util.EnumHelper;
      
      import com.google.common.base.Throwables;
      
      import cpw.mods.fml.common.Mod;
      import cpw.mods.fml.common.Mod.EventHandler;
      import cpw.mods.fml.common.Mod.Instance;
      import cpw.mods.fml.common.SidedProxy;
      import cpw.mods.fml.common.event.FMLPostInitializationEvent;
      import cpw.mods.fml.common.event.FMLPreInitializationEvent;
      import cpw.mods.fml.common.registry.EntityRegistry;
      import cpw.mods.fml.common.registry.GameRegistry;
      import fr.altiscraft.altiscraft.client.ModelBlockATM;
      import fr.altiscraft.altiscraft.client.ModelBlockCoco;
      import fr.altiscraft.altiscraft.client.ModelBlockLampadaire;
      import fr.altiscraft.altiscraft.client.ModelBlockVLampadaire;
      import fr.altiscraft.altiscraft.proxy.CommonProxy;
      
      @Mod(modid = "altiscraft.MODID", name = "AltisCraft.fr", version ="1.0.0")
      
      public class ModAltisCraft
      {
      
          public static final Block.SoundType soundTypeWood = new Block.SoundType("wood", 1.0F, 1.0F);
      
      public static final String MODID = "altiscraft";
      @Instance("altiscraft.MODID")
      public static ModAltisCraft instance;
      
      public static final int guiIDMenu = 0;
      
      @SidedProxy(clientSide = "fr.altiscraft.altiscraft.proxy.ClientProxy", serverSide = "fr.altiscraft.altiscraft.proxy.CommonProxy")
      public static CommonProxy proxy;
      
      public static Item PorteHopital, itemDSable, Tortue, itemAltisCraft, itemAncienAltisCraft, itemRestaurant, secrets, Marteau, Coco, pioche, pelle, itemCuivre, itemCiseaux, itemFil, itemLSD, itemFLSD, itemLMeth, itemMeth, itemCannabis, itemCokaine0, itemCokaine1, itemCokaine2, itemMcDoV, itemMcDoR, Icentime, IIcentimes, Vcentimes, Xcentimes, XXcentimes, Lcentimes, Ieuro, IIeuros, Veuros, Xeuros, XXeuros, Leuros, Ceuros, Meuros, XMeuros, itemPeche, itemFCocaine, itemFCannabis, lunettesCivil, lunettesSoleilCivil, helmetRebelle, chestPlateRebelle, leggingsRebelle, bootsRebelle, helmetAdjoint, helmetBrigadier, chestPlateBrigadier, leggingsBrigadier, bootsBrigadier, helmetSergent, chestPlateSergent, leggingsSergent, bootsSergent, helmetAdjudant, chestPlateAdjudant, leggingsAdjudant, bootsAdjudant, helmetMajor, chestPlateMajor, leggingsMajor, bootsMajor, helmetAspirant, chestPlateAspirant, leggingsAspirant, bootsAspirant, helmetLieutenant, chestPlateLieutenant, leggingsLieutenant, bootsLieutenant, helmetCapitaine, chestPlateCapitaine, leggingsCapitaine, bootsCapitaine, helmetCommandant, chestPlateCommandant, leggingsCommandant, bootsCommandant, helmetColonel, chestPlateColonel, leggingsColonel, bootsColonel, helmetGeneral, chestPlateGeneral, leggingsGeneral, bootsGeneral, helmetCivil, chestPlateCivil, leggingsCivil, bootsCivil, CocaCola, CocaColaLight, CocaColaZero, CocaColaLife;
      public static Block BlocVLampadaire, SemiBrique, BlocLampadaire, PlastiqueRouge, PlastiqueBlanc, PlastiqueBleu, Cyan, Aluminium, PierreBlanc, PierreBlanche, BlanchePierre, PlancheMarron, Flesh, PlastiqueVert, PlastiqueFlashVert, FerGris, FerPeuGris, Rouge, Blanc, BlocCoco, BlocMetaData, Barriere, blockPeche, blockPomme, blockBrique, blocSemiBrique, blocGrisBrique, blockMcDoV, blockMcDoR, MineraisCuivre, MineraisMeth, CannabisPlante, CocainePlante, BlocATM, BlocRoute1, BlocRoute2, BlocATMTexture, BlocFerMarron, BlocPierreVert;
      
      public static ToolMaterial outils = EnumHelper.addToolMaterial("outils", 3, 1000, 1.0F, 1.0F, 30);
      
      public static CreativeTabs AltisCraft = new CreativeTabs("AltisCraft")
      {
      public Item getTabIconItem()
      {
      return ModAltisCraft.itemAltisCraft;
      }
      };
      
      public static ArmorMaterial lunettesSoleil = EnumHelper.addArmorMaterial("lunettesSoleilCivil", 1, new int []{3}, 1);
      public static ArmorMaterial lunettes = EnumHelper.addArmorMaterial("lunettesCivil", 1, new int []{2}, 1);
      public static ArmorMaterial armorAdjoint = EnumHelper.addArmorMaterial("armorAdjoint", 1, new int []{1}, 1);
      public static ArmorMaterial armorBrigadier = EnumHelper.addArmorMaterial("armorBrigadier", 1, new int []{1, 1, 1, 1}, 1);
      public static ArmorMaterial armorSergent = EnumHelper.addArmorMaterial("armorSergent", 1, new int []{1, 2, 2, 1}, 1);
      public static ArmorMaterial armorAdjudant = EnumHelper.addArmorMaterial("armorAdjudant", 1, new int []{2, 2, 2, 2}, 1);
      public static ArmorMaterial armorMajor = EnumHelper.addArmorMaterial("armorMajor", 1, new int []{2, 3, 3, 2}, 1);
      public static ArmorMaterial armorAspirant = EnumHelper.addArmorMaterial("armorAspirant", 1, new int []{3, 3, 3, 3}, 1);
      public static ArmorMaterial armorLieutenant = EnumHelper.addArmorMaterial("armorLieutenant", 1, new int []{3, 4, 4, 3}, 1);
      public static ArmorMaterial armorCapitaine = EnumHelper.addArmorMaterial("armorCapitaine", 1, new int []{4, 4, 4, 4}, 1);
      public static ArmorMaterial armorCommandant = EnumHelper.addArmorMaterial("armorCommandant", 1, new int []{4, 5, 5, 4}, 1);
      public static ArmorMaterial armorColonel = EnumHelper.addArmorMaterial("armorColonel", 1, new int []{5, 5, 5, 5}, 1);
      public static ArmorMaterial armorGeneral = EnumHelper.addArmorMaterial("armorGeneral", 1, new int []{5, 5, 5, 5}, 1);
      public static ArmorMaterial armorCivil = EnumHelper.addArmorMaterial("armorCivil", 1, new int []{1, 2, 2, 1}, 1);
      public static ArmorMaterial armorRebelle = EnumHelper.addArmorMaterial("armorRebelle", 1, new int []{2, 3, 3, 2}, 1);
      
      @EventHandler
      public void preInit(FMLPreInitializationEvent event)
      {
      
      if(event.getSide().isClient()){if(!Minecraft.getMinecraft().mcDataDir.getAbsolutePath().contains("AltisCraft") && !Minecraft.getMinecraft().mcDataDir.equals(new File("."))){Throwables.propagate(new Exception("Launcher non autorisé"));}}
      
      System.out.println("Pré-initialisation !");
      
      ModelBlockATM model = new ModelBlockATM();
         ResourceLocation texture = new ResourceLocation(ModAltisCraft.MODID, "textures/models/blocks/ModelBlockATM.png");
      ModelBlockCoco models = new ModelBlockCoco();
         ResourceLocation textures = new ResourceLocation(ModAltisCraft.MODID, "textures/models/blocks/ModelBlockCoco.png");
      ModelBlockLampadaire modelsb = new ModelBlockLampadaire();
         ResourceLocation texturesb = new ResourceLocation(ModAltisCraft.MODID, "textures/models/blocks/ModelBlockLampadaire.png");
      ModelBlockVLampadaire modelv = new ModelBlockVLampadaire();
         ResourceLocation texturev = new ResourceLocation(ModAltisCraft.MODID, "textures/models/blocks/ModelBlockVLampadaire.png");
      
      itemDSable = new ItemDSable().setUnlocalizedName("itemDSable").setTextureName(MODID + ":itemDSable").setCreativeTab(AltisCraft).setMaxStackSize(1);
      itemAltisCraft = new Logo().setUnlocalizedName("AltisCraft").setTextureName(MODID + ":Logo").setCreativeTab(AltisCraft).setMaxStackSize(4);
      itemAncienAltisCraft = new Logo().setUnlocalizedName("AncienAltisCraft").setTextureName(MODID + ":AncienLogo").setCreativeTab(AltisCraft).setMaxStackSize(8);
      itemRestaurant = new Logo().setUnlocalizedName("Restaurant").setTextureName(MODID + ":Restaurant").setCreativeTab(AltisCraft).setMaxStackSize(4);
      Marteau = new Marteau().setUnlocalizedName("Marteau").setTextureName(MODID + ":Marteau").setCreativeTab(AltisCraft).setMaxStackSize(1);
      secrets = new secrets().setUnlocalizedName("secrets").setTextureName(MODID + ":secrets").setCreativeTab(AltisCraft).setMaxStackSize(1);
      itemCuivre = new item().setUnlocalizedName("Cuivre").setTextureName(MODID + ":Cuivre").setCreativeTab(AltisCraft).setMaxStackSize(4);
      itemMcDoV = new Logo().setUnlocalizedName("McDoV").setTextureName(MODID + ":McDoV").setCreativeTab(AltisCraft).setMaxStackSize(4);
      itemMcDoR = new Logo().setUnlocalizedName("McDoR").setTextureName(MODID + ":McDoR").setCreativeTab(AltisCraft).setMaxStackSize(4);
      itemCiseaux = new item().setUnlocalizedName("Ciseaux").setTextureName(MODID + ":Ciseaux").setCreativeTab(AltisCraft).setMaxStackSize(1);
      itemFil = new item().setUnlocalizedName("Fil").setTextureName(MODID + ":Fil").setCreativeTab(AltisCraft).setMaxStackSize(1);
      Icentime = new Icent().setUnlocalizedName("1cent").setTextureName(MODID + ":1centime").setCreativeTab(AltisCraft).setMaxStackSize(50);
      IIcentimes = new IIcents().setUnlocalizedName("2cents").setTextureName(MODID + ":2centimes").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Vcentimes = new Vcents().setUnlocalizedName("5cents").setTextureName(MODID + ":5centimes").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Xcentimes = new Xcents().setUnlocalizedName("10cents").setTextureName(MODID + ":10centimes").setCreativeTab(AltisCraft).setMaxStackSize(50);
      XXcentimes = new XXcents().setUnlocalizedName("20cents").setTextureName(MODID + ":20centimes").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Lcentimes = new Lcents().setUnlocalizedName("50cents").setTextureName(MODID + ":50centimes").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Ieuro = new Ieuro().setUnlocalizedName("1euro").setTextureName(MODID + ":1euro").setCreativeTab(AltisCraft).setMaxStackSize(50);
      IIeuros = new IIeuros().setUnlocalizedName("2euros").setTextureName(MODID + ":2euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Veuros = new Veuros().setUnlocalizedName("5euros").setTextureName(MODID + ":5euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Xeuros = new Xeuros().setUnlocalizedName("10euros").setTextureName(MODID + ":10euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      XXeuros = new XXeuros().setUnlocalizedName("20euros").setTextureName(MODID + ":20euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Leuros = new Leuros().setUnlocalizedName("50euros").setTextureName(MODID + ":50euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Ceuros = new Ceuros().setUnlocalizedName("100euros").setTextureName(MODID + ":100euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      Meuros = new Meuros().setUnlocalizedName("1000euros").setTextureName(MODID + ":1000euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      XMeuros = new XMeuros().setUnlocalizedName("10000euros").setTextureName(MODID + ":10000euros").setCreativeTab(AltisCraft).setMaxStackSize(50);
      itemCannabis = new Drogue().setUnlocalizedName("Cannabis").setTextureName(MODID + ":Cannabis").setCreativeTab(AltisCraft).setMaxStackSize(16);
      itemLMeth = new Drogue().setUnlocalizedName("LMeth").setTextureName(MODID + ":LingotMeth").setCreativeTab(AltisCraft).setMaxStackSize(1);
      itemCokaine0 = new Drogue().setUnlocalizedName("Cokaine0").setTextureName(MODID + ":Cokaine0").setCreativeTab(AltisCraft).setMaxStackSize(64);
      itemLSD = new Drogue().setUnlocalizedName("LSD").setTextureName(MODID + ":LSD").setCreativeTab(AltisCraft).setMaxStackSize(32);
      itemCokaine1 = new Drogue().setUnlocalizedName("Cokaine1").setTextureName(MODID + ":Cokaine1").setCreativeTab(AltisCraft).setMaxStackSize(32);
      itemCokaine2 = new Drogue().setUnlocalizedName("Cokaine2").setTextureName(MODID + ":Cokaine2").setCreativeTab(AltisCraft).setMaxStackSize(16);
      lunettesSoleilCivil = new lunettesSoleilCivil(lunettesSoleil, 0).setUnlocalizedName("lunettesSoleilCivil").setTextureName(MODID + ":lunettesSoleilCivil").setCreativeTab(AltisCraft);
      lunettesCivil = new lunettesCivil(lunettes, 0).setUnlocalizedName("lunettesCivil").setTextureName(MODID + ":lunettesCivil").setCreativeTab(AltisCraft);
      helmetAdjoint = new ItemAdjointArmor(armorAdjoint, 0).setUnlocalizedName("helmetAdjoint").setTextureName(MODID + ":Adjoint_Chapeau").setCreativeTab(AltisCraft);
      helmetRebelle = new ItemRebelleArmor(armorRebelle, 0).setUnlocalizedName("helmetRebelle").setTextureName(MODID + ":Rebelle_Chapeau").setCreativeTab(AltisCraft);
      chestPlateRebelle = new ItemRebelleArmor(armorRebelle, 1).setUnlocalizedName("chestPlateRebelle").setTextureName(MODID + ":Rebelle_Plastron").setCreativeTab(AltisCraft);
      leggingsRebelle = new ItemRebelleArmor(armorRebelle, 2).setUnlocalizedName("leggingsRebelle").setTextureName(MODID + ":Rebelle_Pantalon").setCreativeTab(AltisCraft);
      bootsRebelle = new ItemRebelleArmor(armorRebelle, 3).setUnlocalizedName("bootsRebelle").setTextureName(MODID + ":Rebelle_Chaussures").setCreativeTab(AltisCraft);
      helmetBrigadier = new ItemBrigadierArmor(armorBrigadier, 0).setUnlocalizedName("helmetBrigadier").setTextureName(MODID + ":Brigadier_Chapeau").setCreativeTab(AltisCraft);
      chestPlateBrigadier = new ItemBrigadierArmor(armorBrigadier, 1).setUnlocalizedName("chestPlateBrigadier").setTextureName(MODID + ":Brigadier_Plastron").setCreativeTab(AltisCraft);
      leggingsBrigadier = new ItemBrigadierArmor(armorBrigadier, 2).setUnlocalizedName("leggingsBrigadier").setTextureName(MODID + ":Brigadier_Pantalon").setCreativeTab(AltisCraft);
      bootsBrigadier = new ItemBrigadierArmor(armorBrigadier, 3).setUnlocalizedName("bootsBrigadier").setTextureName(MODID + ":Brigadier_Chaussures").setCreativeTab(AltisCraft);
      helmetSergent = new ItemSergentArmor(armorSergent, 0).setUnlocalizedName("helmetSergent").setTextureName(MODID + ":Sergent_Chapeau").setCreativeTab(AltisCraft);
      chestPlateSergent = new ItemSergentArmor(armorSergent, 1).setUnlocalizedName("chestPlateSergent").setTextureName(MODID + ":Sergent_Plastron").setCreativeTab(AltisCraft);
      leggingsSergent = new ItemSergentArmor(armorSergent, 2).setUnlocalizedName("leggingsSergent").setTextureName(MODID + ":Sergent_Pantalon").setCreativeTab(AltisCraft);
      bootsSergent = new ItemSergentArmor(armorSergent, 3).setUnlocalizedName("bootsSergent").setTextureName(MODID + ":Sergent_Chaussures").setCreativeTab(AltisCraft);
      helmetAdjudant = new ItemAdjudantArmor(armorAdjudant, 0).setUnlocalizedName("helmetAdjudant").setTextureName(MODID + ":Adjudant_Chapeau").setCreativeTab(AltisCraft);
      chestPlateAdjudant = new ItemAdjudantArmor(armorAdjudant, 1).setUnlocalizedName("chestPlateAdjudant").setTextureName(MODID + ":Adjudant_Plastron").setCreativeTab(AltisCraft);
      leggingsAdjudant = new ItemAdjudantArmor(armorAdjudant, 2).setUnlocalizedName("leggingsAdjudant").setTextureName(MODID + ":Adjudant_Pantalon").setCreativeTab(AltisCraft);
      bootsAdjudant = new ItemAdjudantArmor(armorAdjudant, 3).setUnlocalizedName("bootsAdjudant").setTextureName(MODID + ":Adjudant_Chaussures").setCreativeTab(AltisCraft);
      helmetMajor = new ItemMajorArmor(armorMajor, 0).setUnlocalizedName("helmetMajor").setTextureName(MODID + ":Major_Chapeau").setCreativeTab(AltisCraft);
      chestPlateMajor = new ItemMajorArmor(armorMajor, 1).setUnlocalizedName("chestPlateMajor").setTextureName(MODID + ":Major_Plastron").setCreativeTab(AltisCraft);
      leggingsMajor = new ItemMajorArmor(armorMajor, 2).setUnlocalizedName("leggingsMajor").setTextureName(MODID + ":Major_Pantalon").setCreativeTab(AltisCraft);
      bootsMajor = new ItemMajorArmor(armorMajor, 3).setUnlocalizedName("bootsMajor").setTextureName(MODID + ":Major_Chaussures").setCreativeTab(AltisCraft);
      helmetAspirant = new ItemAspirantArmor(armorAspirant, 0).setUnlocalizedName("helmetAspirant").setTextureName(MODID + ":Aspirant_Chapeau").setCreativeTab(AltisCraft);
      chestPlateAspirant = new ItemAspirantArmor(armorAspirant, 1).setUnlocalizedName("chestPlateAspirant").setTextureName(MODID + ":Aspirant_Plastron").setCreativeTab(AltisCraft);
      leggingsAspirant = new ItemAspirantArmor(armorAspirant, 2).setUnlocalizedName("leggingsAspirant").setTextureName(MODID + ":Aspirant_Pantalon").setCreativeTab(AltisCraft);
      bootsAspirant = new ItemAspirantArmor(armorAspirant, 3).setUnlocalizedName("bootsAspirant").setTextureName(MODID + ":Aspirant_Chaussures").setCreativeTab(AltisCraft);
      helmetLieutenant = new ItemLieutenantArmor(armorLieutenant, 0).setUnlocalizedName("helmetLieutenant").setTextureName(MODID + ":Lieutenant_Chapeau").setCreativeTab(AltisCraft);
      chestPlateLieutenant = new ItemLieutenantArmor(armorLieutenant, 1).setUnlocalizedName("chestPlateLieutenant").setTextureName(MODID + ":Lieutenant_Plastron").setCreativeTab(AltisCraft);
      leggingsLieutenant = new ItemLieutenantArmor(armorLieutenant, 2).setUnlocalizedName("leggingsLieutenant").setTextureName(MODID + ":Lieutenant_Pantalon").setCreativeTab(AltisCraft);
      bootsLieutenant = new ItemLieutenantArmor(armorLieutenant, 3).setUnlocalizedName("bootsLieutenant").setTextureName(MODID + ":Lieutenant_Chaussures").setCreativeTab(AltisCraft);
      helmetCapitaine = new ItemCapitaineArmor(armorCapitaine, 0).setUnlocalizedName("helmetCapitaine").setTextureName(MODID + ":Capitaine_Chapeau").setCreativeTab(AltisCraft);
      chestPlateCapitaine = new ItemCapitaineArmor(armorCapitaine, 1).setUnlocalizedName("chestPlateCapitaine").setTextureName(MODID + ":Capitaine_Plastron").setCreativeTab(AltisCraft);
      leggingsCapitaine = new ItemCapitaineArmor(armorCapitaine, 2).setUnlocalizedName("leggingsCapitaine").setTextureName(MODID + ":Capitaine_Pantalon").setCreativeTab(AltisCraft);
      bootsCapitaine = new ItemCapitaineArmor(armorCapitaine, 3).setUnlocalizedName("bootsCapitaine").setTextureName(MODID + ":Capitaine_Chaussures").setCreativeTab(AltisCraft);
      helmetCommandant = new ItemCommandantArmor(armorCommandant, 0).setUnlocalizedName("helmetCommandant").setTextureName(MODID + ":Commandant_Chapeau").setCreativeTab(AltisCraft);
      chestPlateCommandant = new ItemCommandantArmor(armorCommandant, 1).setUnlocalizedName("chestPlateCommandant").setTextureName(MODID + ":Commandant_Plastron").setCreativeTab(AltisCraft);
      leggingsCommandant = new ItemCommandantArmor(armorCommandant, 2).setUnlocalizedName("leggingsCommandant").setTextureName(MODID + ":Commandant_Pantalon").setCreativeTab(AltisCraft);
      bootsCommandant = new ItemCommandantArmor(armorCommandant, 3).setUnlocalizedName("bootsCommandant").setTextureName(MODID + ":Commandant_Chaussures").setCreativeTab(AltisCraft);
      helmetColonel = new ItemColonelArmor(armorColonel, 0).setUnlocalizedName("helmetColonel").setTextureName(MODID + ":Colonel_Chapeau").setCreativeTab(AltisCraft);
      chestPlateColonel = new ItemColonelArmor(armorColonel, 1).setUnlocalizedName("chestPlateColonel").setTextureName(MODID + ":Colonel_Plastron").setCreativeTab(AltisCraft);
      leggingsColonel = new ItemColonelArmor(armorColonel, 2).setUnlocalizedName("leggingsColonel").setTextureName(MODID + ":Colonel_Pantalon").setCreativeTab(AltisCraft);
      bootsColonel = new ItemColonelArmor(armorColonel, 3).setUnlocalizedName("bootsColonel").setTextureName(MODID + ":Colonel_Chaussures").setCreativeTab(AltisCraft);
      helmetGeneral = new ItemGeneralArmor(armorGeneral, 0).setUnlocalizedName("helmetGeneral").setTextureName(MODID + ":General_Chapeau").setCreativeTab(AltisCraft);
      chestPlateGeneral = new ItemGeneralArmor(armorGeneral, 1).setUnlocalizedName("chestPlateGeneral").setTextureName(MODID + ":General_Plastron").setCreativeTab(AltisCraft);
      leggingsGeneral = new ItemGeneralArmor(armorGeneral, 2).setUnlocalizedName("leggingsGeneral").setTextureName(MODID + ":General_Pantalon").setCreativeTab(AltisCraft);
      bootsGeneral = new ItemGeneralArmor(armorGeneral, 3).setUnlocalizedName("bootsGeneral").setTextureName(MODID + ":General_Chaussures").setCreativeTab(AltisCraft);
      helmetCivil = new ItemCivilArmor(armorCivil, 0).setUnlocalizedName("helmetCivil").setTextureName(MODID + ":Civil_Chapeau").setCreativeTab(AltisCraft);
      chestPlateCivil = new ItemCivilArmor(armorCivil, 1).setUnlocalizedName("chestPlateCivil").setTextureName(MODID + ":Civil_Plastron").setCreativeTab(AltisCraft);
      leggingsCivil = new ItemCivilArmor(armorCivil, 2).setUnlocalizedName("leggingsCivil").setTextureName(MODID + ":Civil_Pantalon").setCreativeTab(AltisCraft);
      bootsCivil = new ItemCivilArmor(armorCivil, 3).setUnlocalizedName("bootsCivil").setTextureName(MODID + ":Civil_Chaussures").setCreativeTab(AltisCraft);
      
      GameRegistry.registerItem(pioche = new ItemPioche("pioche", outils).setCreativeTab(AltisCraft), "pioche");
      GameRegistry.registerItem(pelle = new ItemPelle("pelle", outils).setCreativeTab(AltisCraft), "pelle");
      
      GameRegistry.registerItem(Tortue = new NourritureDrogue("Tortue", 5, 1.0f, false).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(12), "Tortue");
      GameRegistry.registerItem(itemAltisCraft, "item_altiscraft");
      GameRegistry.registerItem(itemAncienAltisCraft, "item_ancienaltiscraft");
      GameRegistry.registerItem(itemRestaurant, "item_restaurant");
      GameRegistry.registerItem(Marteau, "marteau");
      GameRegistry.registerItem(itemDSable, "itemdsable");
      GameRegistry.registerItem(secrets, "secrets");
      GameRegistry.registerItem(itemCuivre, "item_cuivre");
      GameRegistry.registerItem(itemMcDoV, "item_mcdov");
      GameRegistry.registerItem(itemMcDoR, "item_mcdor");
      GameRegistry.registerItem(itemFil, "item_fil");
      GameRegistry.registerItem(itemCiseaux, "item_ciseaux");
      GameRegistry.registerItem(itemLMeth, "item_lmeth");
      GameRegistry.registerItem(itemLSD, "item_lsd");
      GameRegistry.registerItem(itemFLSD = new BoissonDrogue("itemFLSD", 12, 0.5f, false).addPotionEffect(new PotionEffect(Potion.confusion.id, 200, 1), 0.5).addPotionEffect(new PotionEffect(Potion.jump.id, 100, 1), 0.5).addPotionEffect(new PotionEffect(Potion.moveSpeed.id, 250, 1), 0.5).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(16), "itemFLSD");
      GameRegistry.registerItem(itemMeth = new NourritureDrogue("itemMeth", 8, 0.5f, false).addPotionEffect(new PotionEffect(Potion.jump.id, 400, 3), 0.5).addPotionEffect(new PotionEffect(Potion.moveSpeed.id, 450, 2), 0.5).addPotionEffect(new PotionEffect(Potion.regeneration.id, 150, 3), 0.5).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(2), "itemMeth");
      GameRegistry.registerItem(itemFCannabis = new NourritureDrogue("itemFCannabis", 12, 0.5f, false).addPotionEffect(new PotionEffect(Potion.confusion.id, 600, 3), 0.5).addPotionEffect(new PotionEffect(Potion.jump.id, 200, 1), 0.5).addPotionEffect(new PotionEffect(Potion.moveSpeed.id, 450, 1), 0.5).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(8), "itemFCannabis");
      GameRegistry.registerItem(itemFCocaine = new NourritureDrogue("itemFCocaine", 18, 1.0f, false).addPotionEffect(new PotionEffect(Potion.confusion.id, 1200, 3), 0.5).addPotionEffect(new PotionEffect(Potion.jump.id, 600, 3), 0.5).addPotionEffect(new PotionEffect(Potion.moveSpeed.id, 1800, 2), 0.5).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(8), "itemFCocaine");
      GameRegistry.registerItem(itemPeche = new Nourriture("peche", 1, 0.2f, false).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(16), "peche");
      GameRegistry.registerItem(Coco = new Nourriture("Coco", 3, 0.2f, false).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(8), "Coco");
      GameRegistry.registerItem(CocaCola = new Boisson("coca_cola", 0, 0.2f, false).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(4), "coca_cola");
      GameRegistry.registerItem(CocaColaLife = new Boisson("coca_cola_life", 0, 0.2f, false).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(4), "coca_cola_life");
      GameRegistry.registerItem(CocaColaZero = new Boisson("coca_cola_zero", 0, 0.2f, false).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(4), "coca_cola_zero");
      GameRegistry.registerItem(CocaColaLight = new Boisson("coca_cola_light", 0, 0.2f, false).setAlwaysEdible().setCreativeTab(AltisCraft).setMaxStackSize(4), "coca_cola_light");
      GameRegistry.registerItem(Icentime, "item_1centime");
      GameRegistry.registerItem(IIcentimes, "item_2centimes");
      GameRegistry.registerItem(Vcentimes, "item_5centimes");
      GameRegistry.registerItem(Xcentimes, "item_10centimes");
      GameRegistry.registerItem(XXcentimes, "item_20centimes");
      GameRegistry.registerItem(Lcentimes, "item_50centimes");
      GameRegistry.registerItem(Ieuro, "item_1euro");
      GameRegistry.registerItem(IIeuros, "item_2euros");
      GameRegistry.registerItem(Veuros, "item_5euros");
      GameRegistry.registerItem(Xeuros, "item_10euros");
      GameRegistry.registerItem(XXeuros, "item_20euros");
      GameRegistry.registerItem(Leuros, "item_50euros");
      GameRegistry.registerItem(Ceuros, "item_100euros");
      GameRegistry.registerItem(Meuros, "item_1000euros");
      GameRegistry.registerItem(XMeuros, "item_10000euros");
      GameRegistry.registerItem(itemCannabis, "item_cannabis");
      GameRegistry.registerItem(itemCokaine0, "item_cokaine0");
      GameRegistry.registerItem(itemCokaine1, "item_cokaine1");
      GameRegistry.registerItem(itemCokaine2, "item_cokaine2");
      GameRegistry.registerItem(lunettesSoleilCivil, "lunettessoleilcivil");
      GameRegistry.registerItem(lunettesCivil, "lunettescivil");
      GameRegistry.registerItem(helmetAdjoint, "item_adjoint_helmet");
      GameRegistry.registerItem(helmetRebelle, "item_rebelle_helmet");
      GameRegistry.registerItem(chestPlateRebelle, "item_rebelle_chestplate");
      GameRegistry.registerItem(leggingsRebelle, "item_rebelle_leggings");
      GameRegistry.registerItem(bootsRebelle, "item_rebelle_boots");
      GameRegistry.registerItem(helmetBrigadier, "item_brigadier_helmet");
      GameRegistry.registerItem(chestPlateBrigadier, "item_brigadier_chestplate");
      GameRegistry.registerItem(leggingsBrigadier, "item_brigadier_leggings");
      GameRegistry.registerItem(bootsBrigadier, "item_brigadier_boots");
      GameRegistry.registerItem(helmetSergent, "item_sergent_helmet");
      GameRegistry.registerItem(chestPlateSergent, "item_sergent_chestplate");
      GameRegistry.registerItem(leggingsSergent, "item_sergent_leggings");
      GameRegistry.registerItem(bootsSergent, "item_sergent_boots");
      GameRegistry.registerItem(helmetAdjudant, "item_adjudant_helmet");
      GameRegistry.registerItem(chestPlateAdjudant, "item_adjudant_chestplate");
      GameRegistry.registerItem(leggingsAdjudant, "item_adjudant_leggings");
      GameRegistry.registerItem(bootsAdjudant, "item_adjudant_boots");
      GameRegistry.registerItem(helmetMajor, "item_major_helmet");
      GameRegistry.registerItem(chestPlateMajor, "item_major_chestplate");
      GameRegistry.registerItem(leggingsMajor, "item_major_leggings");
      GameRegistry.registerItem(bootsMajor, "item_major_boots");
      GameRegistry.registerItem(helmetAspirant, "item_aspirant_helmet");
      GameRegistry.registerItem(chestPlateAspirant, "item_aspirant_chestplate");
      GameRegistry.registerItem(leggingsAspirant, "item_aspirant_leggings");
      GameRegistry.registerItem(bootsAspirant, "item_aspirant_boots");
      GameRegistry.registerItem(helmetLieutenant, "item_lieutenant_helmet");
      GameRegistry.registerItem(chestPlateLieutenant, "item_lieutenant_chestplate");
      GameRegistry.registerItem(leggingsLieutenant, "item_lieutenant_leggings");
      GameRegistry.registerItem(bootsLieutenant, "item_lieutenant_boots");
      GameRegistry.registerItem(helmetCapitaine, "item_capitaine_helmet");
      GameRegistry.registerItem(chestPlateCapitaine, "item_capitaine_chestplate");
      GameRegistry.registerItem(leggingsCapitaine, "item_capitaine_leggings");
      GameRegistry.registerItem(bootsCapitaine, "item_capitaine_boots");
      GameRegistry.registerItem(helmetCommandant, "item_commandant_helmet");
      GameRegistry.registerItem(chestPlateCommandant, "item_commandant_chestplate");
      GameRegistry.registerItem(leggingsCommandant, "item_commandant_leggings");
      GameRegistry.registerItem(bootsCommandant, "item_commandant_boots");
      GameRegistry.registerItem(helmetColonel, "item_colonel_helmet");
      GameRegistry.registerItem(chestPlateColonel, "item_colonel_chestplate");
      GameRegistry.registerItem(leggingsColonel, "item_colonel_leggings");
      GameRegistry.registerItem(bootsColonel, "item_colonel_boots");
      GameRegistry.registerItem(helmetGeneral, "item_general_helmet");
      GameRegistry.registerItem(chestPlateGeneral, "item_general_chestplate");
      GameRegistry.registerItem(leggingsGeneral, "item_general_leggings");
      GameRegistry.registerItem(bootsGeneral, "item_general_boots");
      GameRegistry.registerItem(helmetCivil, "item_civil_helmet");
      GameRegistry.registerItem(chestPlateCivil, "item_civil_chestplate");
      GameRegistry.registerItem(leggingsCivil, "item_civil_leggings");
      GameRegistry.registerItem(bootsCivil, "item_civil_boots");
      
      SemiBrique = new BlocS(Material.ground).setBlockName("blocsb").setCreativeTab(AltisCraft);
      blockPeche = new BlockPeche().setBlockName("blocpeche").setBlockTextureName(MODID + ":BlocPeche").setCreativeTab(AltisCraft).setHardness(7.5F);
      blockPomme = new BlockPomme().setBlockName("blocpomme").setBlockTextureName(MODID + ":BlocPomme").setCreativeTab(AltisCraft).setHardness(7.5F);
      MineraisCuivre = new MineraisCuivre().setBlockName("bloccuivre").setBlockTextureName(MODID + ":BlocCuivre").setCreativeTab(AltisCraft).setHardness(7.5F);
      MineraisMeth = new MineraisMeth().setBlockName("blocmeth").setBlockTextureName(MODID + ":BlocMeth").setCreativeTab(AltisCraft).setHardness(25.5F);
      blockBrique = new Bloc().setBlockName("blocbrique").setBlockTextureName(MODID + ":BlocBrique").setCreativeTab(AltisCraft);
      Blanc = new Bloc().setBlockName("blanc").setBlockTextureName(MODID + ":Blanc").setCreativeTab(AltisCraft);
      blocSemiBrique = new Bloc().setBlockName("blocsemibrique").setCreativeTab(AltisCraft);
      blocGrisBrique = new Bloc().setBlockName("blocgrisbrique").setBlockTextureName(MODID + ":BlocGrisBrique").setCreativeTab(AltisCraft);
      CocainePlante = new CocainePlante().setBlockName("plantecocaine").setBlockTextureName(MODID + ":Cocaine").setCreativeTab(AltisCraft).setHardness(1.5F);
      CannabisPlante = new CannabisPlante().setBlockName("plantecannabis").setBlockTextureName(MODID + ":Cannabis").setCreativeTab(AltisCraft).setHardness(1.0F);
      blockMcDoV = new Bloc().setBlockName("blocmcdov").setBlockTextureName(MODID + ":McDoV").setCreativeTab(AltisCraft);
      blockMcDoR = new Bloc().setBlockName("blocmcdor").setBlockTextureName(MODID + ":McDoR").setCreativeTab(AltisCraft);
      BlocATM = new BlocATM().setBlockName("blocatm").setCreativeTab(AltisCraft);
      BlocCoco = new BlocCoco().setBlockName("bloccoco").setCreativeTab(AltisCraft).setHardness(7.5F);
      BlocRoute1 = new Bloc().setBlockName("blocroute1").setBlockTextureName(MODID + ":BlocRoute1").setCreativeTab(AltisCraft);
      BlocRoute2 = new Bloc().setBlockName("blocroute2").setBlockTextureName(MODID + ":BlocRoute2").setCreativeTab(AltisCraft);
      BlocATMTexture = new Bloc().setBlockName("blocatmtexture").setBlockTextureName(MODID + ":BlocATMTexture").setCreativeTab(AltisCraft);
      BlocPierreVert = new Bloc().setBlockName("blocpierrevert").setBlockTextureName(MODID + ":BlocPierreVert").setCreativeTab(AltisCraft);
      BlocFerMarron = new Bloc().setBlockName("blocfermarron").setBlockTextureName(MODID + ":BlocFerMarron").setCreativeTab(AltisCraft);
      BlocMetaData = new BlocMetaData().setBlockName("blocmetadata").setCreativeTab(AltisCraft);
      Blanc = new Bloc().setBlockName("blanc").setBlockTextureName(MODID + ":Blanc").setCreativeTab(AltisCraft);
      FerPeuGris = new Bloc().setBlockName("ferpeugris").setBlockTextureName(MODID + ":FerPeuGris").setCreativeTab(AltisCraft);
      PierreBlanc = new Bloc().setBlockName("pierreblanc").setBlockTextureName(MODID + ":PierreBlanc").setCreativeTab(AltisCraft);
      FerGris = new Bloc().setBlockName("fergris").setBlockTextureName(MODID + ":FerGris").setCreativeTab(AltisCraft);
      PlastiqueFlashVert = new Bloc().setBlockName("plastiqueflashvert").setBlockTextureName(MODID + ":PlastiqueFlashVert").setCreativeTab(AltisCraft);
      Cyan = new Bloc().setBlockName("cyan").setBlockTextureName(MODID + ":Cyan").setCreativeTab(AltisCraft);
      Aluminium = new Bloc().setBlockName("aluminium").setBlockTextureName(MODID + ":Aluminium").setCreativeTab(AltisCraft);
      BlanchePierre = new Bloc().setBlockName("blanchepierre").setBlockTextureName(MODID + ":BlanchePierre").setCreativeTab(AltisCraft);
      PierreBlanche = new Bloc().setBlockName("pierreblanche").setBlockTextureName(MODID + ":PierreBlanche").setCreativeTab(AltisCraft);
      PlastiqueVert = new Bloc().setBlockName("plastiquevert").setBlockTextureName(MODID + ":PlastiqueVert").setCreativeTab(AltisCraft);
      Flesh = new Bloc().setBlockName("flesh").setBlockTextureName(MODID + ":Flesh").setCreativeTab(AltisCraft);
      PlancheMarron = new Bloc().setBlockName("planchemarron").setBlockTextureName(MODID + ":PlancheMarron").setCreativeTab(AltisCraft);
      Rouge = new Bloc().setBlockName("rouge").setBlockTextureName(MODID + ":Rouge").setCreativeTab(AltisCraft);
      PlastiqueRouge = new Bloc().setBlockName("plastiquerouge").setBlockTextureName(MODID + ":PlastiqueRouge").setCreativeTab(AltisCraft);
      PlastiqueBlanc = new Bloc().setBlockName("plastiqueblanc").setBlockTextureName(MODID + ":PlastiqueBlanc").setCreativeTab(AltisCraft);
      PlastiqueBleu = new Bloc().setBlockName("plastiquebleu").setBlockTextureName(MODID + ":PlastiqueBleu").setCreativeTab(AltisCraft);
      BlocLampadaire = new BlocLampadaire().setBlockName("bloclampadaire").setCreativeTab(AltisCraft);
      BlocVLampadaire = new BlocVLampadaire().setBlockName("blocvlampadaire").setCreativeTab(AltisCraft);
      PorteHopital = new PorteHopital(Material.ground).setUnlocalizedName("portehopital").setTextureName(ModAltisCraft.MODID + ":PorteHopital");
      
      GameRegistry.registerItem(PorteHopital, "portehopital");
      GameRegistry.registerBlock(SemiBrique, "blocsb");
      GameRegistry.registerBlock(PlastiqueRouge, "plastiquerouge");
      GameRegistry.registerBlock(PlastiqueBlanc, "plastiqueblanc");
      GameRegistry.registerBlock(PlastiqueBleu, "plastiquebleu");
      GameRegistry.registerBlock(Blanc, "blanc");
      GameRegistry.registerBlock(FerPeuGris, "ferpeugris");
      GameRegistry.registerBlock(PierreBlanc, "pierreblanc"); 
      GameRegistry.registerBlock(FerGris, "fergris");
      GameRegistry.registerBlock(PlastiqueFlashVert, "plastiqueflashvert");
      GameRegistry.registerBlock(Cyan, "cyan");
      GameRegistry.registerBlock(Aluminium, "aluminium");
      GameRegistry.registerBlock(BlanchePierre, "blanchepierre");
      GameRegistry.registerBlock(PierreBlanche, "pierreblanche");
      GameRegistry.registerBlock(PlastiqueVert, "plastiquevert");
      GameRegistry.registerBlock(Flesh, "flesh");
      GameRegistry.registerBlock(PlancheMarron, "planchemarron");
      GameRegistry.registerBlock(Rouge, "rouge");
      GameRegistry.registerBlock(blockPeche, "block_peche");
      GameRegistry.registerBlock(blockPomme, "block_pomme");
      GameRegistry.registerBlock(blockBrique, "block_brick");
      GameRegistry.registerBlock(blocSemiBrique, "block_semibrick");
      GameRegistry.registerBlock(blocGrisBrique, "block_grisbrick");
      GameRegistry.registerBlock(MineraisCuivre, "bloc_cuivre");
      GameRegistry.registerBlock(CannabisPlante, "plante_cannabis");
      GameRegistry.registerBlock(CocainePlante, "plante_cocaine");
      GameRegistry.registerBlock(blockMcDoV, "block_mcdov");
      GameRegistry.registerBlock(blockMcDoR, "block_mcdor");
      GameRegistry.registerBlock(BlocRoute1, "bloc_route1");
      GameRegistry.registerBlock(BlocRoute2, "bloc_route2");
      GameRegistry.registerBlock(BlocATMTexture, "bloc_atmtexture");
      GameRegistry.registerBlock(BlocATM, "blocatm");
      GameRegistry.registerBlock(BlocLampadaire, "bloclampadaire");
      GameRegistry.registerBlock(BlocVLampadaire, "blocvlampadaire");
      GameRegistry.registerBlock(BlocCoco, "bloccoco");
      GameRegistry.registerBlock(MineraisMeth, "mineraismeth");
      GameRegistry.registerBlock(BlocPierreVert, "blocpierrevert");
      GameRegistry.registerBlock(BlocFerMarron, "blocfermarron");
      GameRegistry.registerBlock(BlocMetaData, ItemBlocMetaData.class, "bloc_metadata");
      
      GameRegistry.registerTileEntity(TileEntityATM.class, "modid:atm");
      GameRegistry.registerTileEntity(TileEntityVLampadaire.class, "modid:vlampadaire");
      
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.IIcentimes, 1), new Object[] {"##", '#', ModAltisCraft.Icentime});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.IIcentimes, 1), new Object[] {"#", "#", '#', ModAltisCraft.Icentime});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Vcentimes, 1), new Object[] {"#", "I", "#", '#', ModAltisCraft.IIcentimes, 'I', ModAltisCraft.Icentime});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Vcentimes, 1), new Object[] {"#I#", '#', ModAltisCraft.IIcentimes, 'I', ModAltisCraft.Icentime});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xcentimes, 1), new Object[] {"##", '#', ModAltisCraft.Vcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xcentimes, 1), new Object[] {"#", "#", '#', ModAltisCraft.Vcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.XXcentimes, 1), new Object[] {"##", '#', ModAltisCraft.Xcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.XXcentimes, 1), new Object[] {"#", "#", '#', ModAltisCraft.Xcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Lcentimes, 1), new Object[] {"#", "I", "#", '#', ModAltisCraft.XXcentimes, 'I', ModAltisCraft.Xcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Lcentimes, 1), new Object[] {"#I#", '#', ModAltisCraft.XXcentimes, 'I', ModAltisCraft.Xcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Ieuro, 1), new Object[] {"##", '#', ModAltisCraft.Lcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Ieuro, 1), new Object[] {"#", "#", '#', ModAltisCraft.Lcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.IIeuros, 1), new Object[] {"##", '#', ModAltisCraft.Ieuro});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.IIeuros, 1), new Object[] {"#", "#", '#', ModAltisCraft.Ieuro});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Veuros, 1), new Object[] {"#", "I", "#", '#', ModAltisCraft.IIeuros, 'I', ModAltisCraft.Ieuro});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Veuros, 1), new Object[] {"#I#", '#', ModAltisCraft.IIeuros, 'I', ModAltisCraft.Ieuro});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xeuros, 1), new Object[] {"##", '#', ModAltisCraft.Veuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xeuros, 1), new Object[] {"#", "#", '#', ModAltisCraft.Veuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.XXeuros, 1), new Object[] {"##", '#', ModAltisCraft.Xeuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.XXeuros, 1), new Object[] {"#", "#", '#', ModAltisCraft.Xeuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Leuros, 1), new Object[] {"#", "I", "#", '#', ModAltisCraft.XXeuros, 'I', ModAltisCraft.Xeuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Leuros, 1), new Object[] {"#I#", '#', ModAltisCraft.XXeuros, 'I', ModAltisCraft.Xeuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Ceuros, 1), new Object[] {"##", '#', ModAltisCraft.Leuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Ceuros, 1), new Object[] {"#", "#", '#', ModAltisCraft.Leuros});
      
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Icentime, 2), new Object[] {"#", '#', ModAltisCraft.IIcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Icentime, 5), new Object[] {"#", '#', ModAltisCraft.Vcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Vcentimes, 2), new Object[] {"#", '#', ModAltisCraft.Xcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xcentimes, 2), new Object[] {"#", '#', ModAltisCraft.XXcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xcentimes, 5), new Object[] {"#", '#', ModAltisCraft.Lcentimes});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Lcentimes, 2), new Object[] {"#", '#', ModAltisCraft.Ieuro});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Ieuro, 2), new Object[] {"#", '#', ModAltisCraft.IIeuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Ieuro, 5), new Object[] {"#", '#', ModAltisCraft.Veuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Veuros, 2), new Object[] {"#", '#', ModAltisCraft.Xeuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xeuros, 2), new Object[] {"#", '#', ModAltisCraft.XXeuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Xeuros, 5), new Object[] {"#", '#', ModAltisCraft.Leuros});
      GameRegistry.addRecipe(new ItemStack(ModAltisCraft.Leuros, 2), new Object[] {"#", '#', ModAltisCraft.Ceuros});
      
      GameRegistry.addSmelting(ModAltisCraft.MineraisCuivre, new ItemStack(ModAltisCraft.itemCuivre), 1.0F);
      }
      
      @EventHandler
      public void Init(FMLPreInitializationEvent event)
      {
      proxy.registerRender();
      System.out.println("Initialisation !");
      }
      @EventHandler
      public void postInit(FMLPostInitializationEvent event)
      {
      System.out.println("Post-initialisation !");
      addEntity(EntityMobBenjaminLoison.class, "BenjaminLoison", 420, 0, 0);
      }
      
      public void addEntity(Class entityClass, String name, int id, int backgroundColor, int foregroundColor)
      {
      EntityRegistry.registerGlobalEntityID(entityClass, name, EntityRegistry.findGlobalUniqueEntityId(), backgroundColor, foregroundColor);
      EntityRegistry.registerModEntity(entityClass, name, id, this, 40, 1, true);
      }
      
      }
      
      
      ​package fr.altiscraft.altiscraft.common;
      
      import net.minecraft.nbt.NBTTagCompound;
      import net.minecraft.network.NetworkManager;
      import net.minecraft.network.Packet;
      import net.minecraft.network.play.server.S35PacketUpdateTileEntity;
      import net.minecraft.tileentity.TileEntity;
      
      public class TileEntityVLampadaire extends TileEntity
      {
          private byte direction;
      
          @Override
          public void readFromNBT(NBTTagCompound compound)
          {
              super.readFromNBT(compound);
              this.direction = compound.getByte("Direction");
          }
      
          @Override
          public void writeToNBT(NBTTagCompound compound)
          {
              super.writeToNBT(compound);
              compound.setByte("Direction", this.direction);
          }
      
          public byte getDirection()
          {
              return direction;
          }
      
          public void setDirection(byte direction)
          {
              this.direction = direction;
              this.worldObj.markBlockForUpdate(this.xCoord, this.yCoord, this.zCoord);
          }
      
          public Packet getDescriptionPacket()
          {
              NBTTagCompound nbttagcompound = new NBTTagCompound();
              this.writeToNBT(nbttagcompound);
              return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord, this.zCoord, 0, nbttagcompound);
          }
      
          public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity pkt)
          {
              this.readFromNBT(pkt.func_148857_g());
              this.worldObj.markBlockRangeForRenderUpdate(this.xCoord, this.yCoord, this.zCoord, this.xCoord, this.yCoord, this.zCoord);
          }
      }
      
      ​package fr.altiscraft.altiscraft.proxy;
      
      import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;
      import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
      import net.minecraft.tileentity.TileEntity;
      import net.minecraft.util.ResourceLocation;
      
      import org.lwjgl.opengl.GL11;
      
      import fr.altiscraft.altiscraft.client.ModelBlockVLampadaire;
      import fr.altiscraft.altiscraft.common.ModAltisCraft;
      import fr.altiscraft.altiscraft.common.TileEntityVLampadaire;
      
      public class TileEntityVLampadaireSpecialRenderer extends TileEntitySpecialRenderer{
      public static ModelBlockVLampadaire modelv = new ModelBlockVLampadaire();
      public static ResourceLocation texturev = new ResourceLocation(ModAltisCraft.MODID, "textures/models/blocks/ModelBlockVLampadaire.png");
      
      public TileEntityVLampadaireSpecialRenderer()
      {
      this.func_147497_a(TileEntityRendererDispatcher.instance);
      }
      
      @Override
      public void renderTileEntityAt(TileEntity tile, double x,
      double y, double z, float partialRenderTick) {
          this.renderTileEntityVLampadaireAt((TileEntityVLampadaire) tile, x, y, z, partialRenderTick);
      }
      
      private void renderTileEntityVLampadaireAt(TileEntityVLampadaire tile, double x, double y,
      double z, float partialRenderTick) {
      GL11.glPushMatrix();
              GL11.glTranslated(x + 0.5D, y + 1.5D, z + 0.5D);
              GL11.glRotatef(180F, 0.0F, 0.0F, 1.0F);
              GL11.glRotatef((90F * tile.getDirection()) + 180F, 0.0F, 1.0F, 0.0F);
              this.bindTexture(texturev);
              modelv.renderAll();
              GL11.glPopMatrix();
      }
      }
      
      

      >! Développeur de Altis-Life (Arma III) sur Minecraft !
      >! Site web     : https://lemnoslife.com

      1 réponse Dernière réponse Répondre Citer 0
      • SCAREXS Hors-ligne
        SCAREX
        dernière édition par

        Tu as oublié d’enregistrer ton TileEntity.

        Site web contenant mes scripts : http://SCAREXgaming.github.io

        Pas de demandes de support par MP ni par skype SVP.
        Je n'accepte sur skype que l…

        1 réponse Dernière réponse Répondre Citer 0
        • robin4002R Hors-ligne
          robin4002 Moddeurs confirmés Rédacteurs Administrateurs
          dernière édition par

          java.lang.RuntimeException: class fr.altiscraft.altiscraft.common.TileEntityLampadaire is missing a mapping! This is a bug!
          Tu n’as pas enregistré le tile entity.

          1 réponse Dernière réponse Répondre Citer 0
          • Benjamin LoisonB Hors-ligne
            Benjamin Loison
            dernière édition par

            Effectivement merci 🙂 et je voudrais ajouter de la couleur au bouton “AltisCraft” mais le § fais des accents WTF :S

            ​package fr.altiscraft.altiscraft.common;
            
               import java.io.BufferedReader;
            import java.io.IOException;
            import java.io.InputStreamReader;
            import java.net.URI;
            import java.util.ArrayList;
            import java.util.Calendar;
            import java.util.Date;
            import java.util.Random;
            
            import net.minecraft.client.Minecraft;
            import net.minecraft.client.gui.GuiButton;
            import net.minecraft.client.gui.GuiButtonLanguage;
            import net.minecraft.client.gui.GuiConfirmOpenLink;
            import net.minecraft.client.gui.GuiLanguage;
            import net.minecraft.client.gui.GuiOptions;
            import net.minecraft.client.gui.GuiScreen;
            import net.minecraft.client.gui.GuiSelectWorld;
            import net.minecraft.client.gui.GuiYesNo;
            import net.minecraft.client.gui.GuiYesNoCallback;
            import net.minecraft.client.renderer.OpenGlHelper;
            import net.minecraft.client.renderer.Tessellator;
            import net.minecraft.client.renderer.texture.DynamicTexture;
            import net.minecraft.client.resources.I18n;
            import net.minecraft.util.EnumChatFormatting;
            import net.minecraft.util.MathHelper;
            import net.minecraft.util.ResourceLocation;
            import net.minecraft.world.demo.DemoWorldServer;
            import net.minecraft.world.storage.ISaveFormat;
            import net.minecraft.world.storage.WorldInfo;
            
            import org.apache.commons.io.Charsets;
            import org.apache.logging.log4j.LogManager;
            import org.apache.logging.log4j.Logger;
            import org.lwjgl.opengl.GL11;
            import org.lwjgl.opengl.GLContext;
            
            import cpw.mods.fml.client.FMLClientHandler;
            import cpw.mods.fml.relauncher.Side;
            import cpw.mods.fml.relauncher.SideOnly;
            
               @SideOnly(Side.CLIENT)
               public class GuiCustomMainMenu extends GuiScreen implements GuiYesNoCallback
               {
                   private static final Logger logger = LogManager.getLogger();
                   private static final Random rand = new Random();
                   private float updateCounter;
                   private String splashText;
                   private GuiButton buttonResetDemo;
                   private int panoramaTimer;
                   private DynamicTexture viewportTexture;
                   private final Object field_104025_t = new Object();
                   private String field_92025_p;
                   private String field_146972_A;
                   private String field_104024_v;
                   private static final ResourceLocation splashTexts = new ResourceLocation(ModAltisCraft.MODID, "info/infos.txt");
                   private static final ResourceLocation minecraftTitleTextures = new ResourceLocation(ModAltisCraft.MODID, "textures/gui/altiscraft.png");
                   public static final String field_96138_a = "Please click " + EnumChatFormatting.UNDERLINE + "here" + EnumChatFormatting.RESET + " for more information.";
                   private int field_92024_r;
                   private int field_92023_s;
                   private int field_92022_t;
                   private int field_92021_u;
                   private int field_92020_v;
                   private int field_92019_w;
                   private ResourceLocation field_110351_G;
                   private static final String __OBFID = "CL_00001154";
                   private final ResourceLocation backGround = new ResourceLocation(ModAltisCraft.MODID, "textures/gui/altis.png");
                   public GuiCustomMainMenu()
                   {
                       this.field_146972_A = field_96138_a;
                       this.splashText = "missingno";
                       BufferedReader bufferedreader = null;
            
                       try
                       {
                           ArrayList arraylist = new ArrayList();
                           bufferedreader = new BufferedReader(new InputStreamReader(Minecraft.getMinecraft().getResourceManager().getResource(splashTexts).getInputStream(), Charsets.UTF_8));
                           String s;
            
                           while((s = bufferedreader.readLine()) != null)
                           {
                               s = s.trim();
            
                               if(!s.isEmpty())
                               {
                                   arraylist.add(s);
                               }
                           }
            
                           if(!arraylist.isEmpty())
                           {
                               do
                               {
                                   this.splashText = (String)arraylist.get(rand.nextInt(arraylist.size()));
                               }
                               while(this.splashText.hashCode() == 125780783);
                           }
                       }
                       catch(IOException ioexception1)
                       {
                           ;
                       }
                       finally
                       {
                           if(bufferedreader != null)
                           {
                               try
                               {
                                   bufferedreader.close();
                               }
                               catch(IOException ioexception)
                               {
                                   ;
                               }
                           }
                       }
            
                       this.updateCounter = rand.nextFloat();
                       this.field_92025_p = "";
            
                       if(!GLContext.getCapabilities().OpenGL20 && !OpenGlHelper.func_153193_b())
                       {
                           this.field_92025_p = I18n.format("title.oldgl1", new Object[0]);
                           this.field_146972_A = I18n.format("title.oldgl2", new Object[0]);
                           this.field_104024_v = "https://help.mojang.com/customer/portal/articles/325948?ref=game";
                       }
                   }
            
                   public void updateScreen()
                   {
                       ++this.panoramaTimer;
                   }
            
                   public boolean doesGuiPauseGame()
                   {
                       return false;
                   }
            
                   protected void keyTyped(char p_73869_1_, int p_73869_2_)
                   {}
            
                   public void initGui()
                   {
                       this.viewportTexture = new DynamicTexture(256, 256);
                       this.field_110351_G = this.mc.getTextureManager().getDynamicTextureLocation("background", this.viewportTexture);
                       Calendar calendar = Calendar.getInstance();
                       calendar.setTime(new Date());
            
                       if(calendar.get(2) + 1 == 11 && calendar.get(5) == 9)
                       {
                           this.splashText = "Happy birthday, ez!";
                       }
                       else if(calendar.get(2) + 1 == 6 && calendar.get(5) == 1)
                       {
                           this.splashText = "Happy birthday, Notch!";
                       }
                       else if(calendar.get(2) + 1 == 12 && calendar.get(5) == 24)
                       {
                           this.splashText = "Merry X-mas!";
                       }
                       else if(calendar.get(2) + 1 == 1 && calendar.get(5) == 1)
                       {
                           this.splashText = "Happy new year!";
                       }
                       else if(calendar.get(2) + 1 == 10 && calendar.get(5) == 31)
                       {
                           this.splashText = "OOoooOOOoooo! Spooky!";
                       }
                       else if(calendar.get(2) + 1 == 7 && calendar.get(5) == 6)
                       {
                           this.splashText = "Joyeux anniversaire Zedokf_DrM !";
                       }
            
                       boolean flag = true;
                       int i = this.height / 4 + 48;
            
                       if(this.mc.isDemo())
                       {
                           this.addDemoButtons(i, 24);
                       }
                       else
                       {
                           this.addSingleplayerMultiplayerButtons(i, 24);
                       }
            
                       this.buttonList.add(new GuiButton(0, this.width / 2 - 100, i + 72 + 12, 98, 20, I18n.format("menu.options", new Object[0])));
                       this.buttonList.add(new GuiButton(4, this.width / 2 + 2, i + 72 + 12, 98, 20, I18n.format("menu.quit", new Object[0])));
                       this.buttonList.add(new GuiButtonLanguage(5, this.width / 2 - 124, i + 72 + 12));
                       Object object = this.field_104025_t;
            
                       synchronized(this.field_104025_t)
                       {
                           this.field_92023_s = this.fontRendererObj.getStringWidth(this.field_92025_p);
                           this.field_92024_r = this.fontRendererObj.getStringWidth(this.field_146972_A);
                           int j = Math.max(this.field_92023_s, this.field_92024_r);
                           this.field_92022_t = (this.width - j) / 2;
                           this.field_92021_u = ((GuiButton)this.buttonList.get(0)).yPosition - 24;
                           this.field_92020_v = this.field_92022_t + j;
                           this.field_92019_w = this.field_92021_u + 24;
                       }
                   }
            
                   private void addSingleplayerMultiplayerButtons(int x, int y)
                   {
                       this.buttonList.add(new GuiButton(1, this.width / 2 - 100, x, 98, 20, I18n.format("Site")));
                       this.buttonList.add(new GuiButton(2, this.width / 2 + 2, x + 0, 98, 20, I18n.format("Forum")));
                       this.buttonList.add(new GuiButton(20, this.width / 2 - 100, x + y * 1, "AltisCraft"));
                       GuiButton webSiteButton = new GuiButton(21, this.width / 2 - 100, x + y * 2, "Vote");
                       GuiButton fmlModButton = new GuiButton(6, this.width / 2 - 100, x + y * 2, "TeamSpeak 3");
                       fmlModButton.xPosition = this.width / 2 + 2;
                       webSiteButton.width = 98;
                       fmlModButton.width = 98;
                       this.buttonList.add(webSiteButton);
                       this.buttonList.add(fmlModButton);
                   }
            
                   private void addDemoButtons(int x, int y)
                   {
                       this.buttonList.add(new GuiButton(11, this.width / 2 - 100, x, I18n.format("menu.playdemo", new Object[0])));
                       this.buttonList.add(this.buttonResetDemo = new GuiButton(12, this.width / 2 - 100, x + y * 1, I18n.format("menu.resetdemo", new Object[0])));
                       ISaveFormat isaveformat = this.mc.getSaveLoader();
                       WorldInfo worldinfo = isaveformat.getWorldInfo("Demo_World");
            
                       if(worldinfo == null)
                       {
                           this.buttonResetDemo.enabled = false;
                       }
                   }
            
                   protected void actionPerformed(GuiButton button)
                   {
                       if(button.id == 0)
                       {
                           this.mc.displayGuiScreen(new GuiOptions(this, this.mc.gameSettings));
                       }
            
                       if(button.id == 5)
                       {
                           this.mc.displayGuiScreen(new GuiLanguage(this, this.mc.gameSettings, this.mc.getLanguageManager()));
                       }
            
                       if(button.id == 1)
                       {
                           try
                           {
                               Class oclass = Class.forName("java.awt.Desktop");
                               Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
                               oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("http://www.altiscraft.fr/")});
                           }
                           catch(Throwable throwable)
                           {
                               logger.error("Couldn\'t open link", throwable);
                           }
                       }
            
                       if(button.id == 2)
                       {
                           try
                           {
                               Class oclass = Class.forName("java.awt.Desktop");
                               Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
                               oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("http://altiscraftmod.forumactif.org/")});
                           }
                           catch(Throwable throwable)
                           {
                               logger.error("Couldn\'t open link", throwable);
                           }
                       }
            
                       if(button.id == 4)
                       {
                           this.mc.shutdown();
                       }
            
                       if(button.id == 6)
                       {
                           try
                           {
                               Class oclass = Class.forName("java.awt.Desktop");
                               Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
                               oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("ts3server://149.91.80.130?port=")});
                           }
                           catch(Throwable throwable)
                           {
                               logger.error("Couldn\'t open link", throwable);
                           }
                       }
            
                       if(button.id == 11)
                       {
                           this.mc.launchIntegratedServer("Demo_World", "Demo_World", DemoWorldServer.demoWorldSettings);
                       }
            
                       if(button.id == 12)
                       {
                           ISaveFormat isaveformat = this.mc.getSaveLoader();
                           WorldInfo worldinfo = isaveformat.getWorldInfo("Demo_World");
            
                           if(worldinfo != null)
                           {
                               GuiYesNo guiyesno = GuiSelectWorld.func_152129_a(this, worldinfo.getWorldName(), 12);
                               this.mc.displayGuiScreen(guiyesno);
                           }
                       }
            
                       if(button.id == 20)
                       {
                           FMLClientHandler.instance().connectToServerAtStartup("92.222.239.172", 25565);
                       }
            
                       if(button.id == 21)
                       {
                           try
                           {
                               Class oclass = Class.forName("java.awt.Desktop");
                               Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
                               oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI("http://www.altiscraft.fr/Vote(en_création)")});
                           }
                           catch(Throwable throwable)
                           {
                               logger.error("Couldn\'t open link", throwable);
                           }
                       }
                   }
            
                   public void confirmClicked(boolean p_73878_1_, int id)
                   {
                       if(p_73878_1_ && id == 12)
                       {
                           ISaveFormat isaveformat = this.mc.getSaveLoader();
                           isaveformat.flushCache();
                           isaveformat.deleteWorldDirectory("Demo_World");
                           this.mc.displayGuiScreen(this);
                       }
                       else if(id == 13)
                       {
                           if(p_73878_1_)
                           {
                               try
                               {
                                   Class oclass = Class.forName("java.awt.Desktop");
                                   Object object = oclass.getMethod("getDesktop", new Class[0]).invoke((Object)null, new Object[0]);
                                   oclass.getMethod("browse", new Class[] {URI.class}).invoke(object, new Object[] {new URI(this.field_104024_v)});
                               }
                               catch(Throwable throwable)
                               {
                                   logger.error("Couldn\'t open link", throwable);
                               }
                           }
            
                           this.mc.displayGuiScreen(this);
                       }
                   }
            
                   private void renderBackGround()
                   {
                       GL11.glViewport(0, 0, 256, 256);
                       this.mc.getTextureManager().bindTexture(backGround); 
                       GL11.glDisable(GL11.GL_TEXTURE_2D);
                       GL11.glEnable(GL11.GL_TEXTURE_2D);
                       GL11.glViewport(0, 0, this.mc.displayWidth, this.mc.displayHeight);
                       Tessellator tessellator = Tessellator.instance;
                       tessellator.startDrawingQuads();
                       GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_LINEAR);
                       GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_LINEAR);
                       tessellator.setColorRGBA_F(1.0F, 1.0F, 1.0F, 1.0F);
                       int k = this.width;
                       int l = this.height;
                       tessellator.addVertexWithUV(0, 0, this.zLevel, 0, 0);
                       tessellator.addVertexWithUV(0, l, this.zLevel, 0, 1);
                       tessellator.addVertexWithUV(k, l, this.zLevel, 1, 1);
                       tessellator.addVertexWithUV(k, 0, this.zLevel, 1, 0);
                       tessellator.draw();
                   }
                   /**
                    * Draws the screen and all the components in it.
                    */
                   public void drawScreen(int x, int y, float partialTick)
                   {
                       GL11.glDisable(GL11.GL_ALPHA_TEST);
                       this.renderBackGround();
                       GL11.glEnable(GL11.GL_ALPHA_TEST);
                       Tessellator tessellator = Tessellator.instance;
                       short short1 = 274;
                       int k = this.width / 2 - short1 / 2;
                       byte b0 = 30;
                       this.drawGradientRect(0, 0, this.width, this.height, -2130706433, 16777215);
                       this.drawGradientRect(0, 0, this.width, this.height, 0, Integer.MIN_VALUE);
                       this.mc.getTextureManager().bindTexture(minecraftTitleTextures);
                       GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
            
                       if((double)this.updateCounter < 1.0E-4D)
                       {
                           this.drawTexturedModalRect(k + 0, b0 + 0, 0, 0, 99, 44);
                           this.drawTexturedModalRect(k + 99, b0 + 0, 129, 0, 27, 44);
                           this.drawTexturedModalRect(k + 99 + 26, b0 + 0, 126, 0, 3, 44);
                           this.drawTexturedModalRect(k + 99 + 26 + 3, b0 + 0, 99, 0, 26, 44);
                           this.drawTexturedModalRect(k + 155, b0 + 0, 0, 45, 155, 44);
                       }
                       else
                       {
                           this.drawTexturedModalRect(k + 0, b0 + 0, 0, 0, 155, 44);
                           this.drawTexturedModalRect(k + 155, b0 + 0, 0, 45, 155, 44);
                       }
            
                       tessellator.setColorOpaque_I(-1);
                       GL11.glPushMatrix();
                       GL11.glTranslatef((float)(this.width / 2 + 90), 70.0F, 0.0F);
                       GL11.glRotatef(-20.0F, 0.0F, 0.0F, 1.0F);
                       float f1 = 1.8F - MathHelper.abs(MathHelper.sin((float)(Minecraft.getSystemTime() % 1000L) / 1000.0F * (float)Math.PI * 2.0F) * 0.1F);
                       f1 = f1 * 100.0F / (float)(this.fontRendererObj.getStringWidth(this.splashText) + 32);
                       GL11.glScalef(f1, f1, f1);
                       this.drawCenteredString(this.fontRendererObj, this.splashText, 0, -8, -256);
                       GL11.glPopMatrix();
            
                       if(this.field_92025_p != null && this.field_92025_p.length() > 0)
                       {
                           drawRect(this.field_92022_t - 2, this.field_92021_u - 2, this.field_92020_v + 2, this.field_92019_w - 1, 1428160512);
                           this.drawString(this.fontRendererObj, this.field_92025_p, this.field_92022_t, this.field_92021_u, -1);
                           this.drawString(this.fontRendererObj, this.field_146972_A, (this.width - this.field_92024_r) / 2, ((GuiButton)this.buttonList.get(0)).yPosition - 12, -1);
                       }
            
                       super.drawScreen(x, y, partialTick);
                   }
            
                   protected void mouseClicked(int p_73864_1_, int p_73864_2_, int p_73864_3_)
                   {
                       super.mouseClicked(p_73864_1_, p_73864_2_, p_73864_3_);
                       Object object = this.field_104025_t;
            
                       synchronized(this.field_104025_t)
                       {
                           if(this.field_92025_p.length() > 0 && p_73864_1_ >= this.field_92022_t && p_73864_1_ <= this.field_92020_v && p_73864_2_ >= this.field_92021_u && p_73864_2_ <= this.field_92019_w)
                           {
                               GuiConfirmOpenLink guiconfirmopenlink = new GuiConfirmOpenLink(this, this.field_104024_v, 13, true);
                               guiconfirmopenlink.func_146358_g();
                               this.mc.displayGuiScreen(guiconfirmopenlink);
                           }
                       }
                   }
               }
            
            

            >! Développeur de Altis-Life (Arma III) sur Minecraft !
            >! Site web     : https://lemnoslife.com

            1 réponse Dernière réponse Répondre Citer 0
            • robin4002R Hors-ligne
              robin4002 Moddeurs confirmés Rédacteurs Administrateurs
              dernière édition par

              Le mieux est de passer par les fichiers lang pour les couleurs.

              1 réponse Dernière réponse Répondre Citer 0
              • SCAREXS Hors-ligne
                SCAREX
                dernière édition par

                Tu peux utiliser l’enum EnumChatFormatting pour les couleurs.

                Site web contenant mes scripts : http://SCAREXgaming.github.io

                Pas de demandes de support par MP ni par skype SVP.
                Je n'accepte sur skype que l…

                1 réponse Dernière réponse Répondre Citer 0
                • Benjamin LoisonB Hors-ligne
                  Benjamin Loison
                  dernière édition par

                  @‘SCAREX’:

                  Tu peux utiliser l’enum EnumChatFormatting pour les couleurs.

                  Comment mettre du cyan parce que ça ne marche pas #§3 ?

                  >! Développeur de Altis-Life (Arma III) sur Minecraft !
                  >! Site web     : https://lemnoslife.com

                  1 réponse Dernière réponse Répondre Citer 0
                  • SCAREXS Hors-ligne
                    SCAREX
                    dernière édition par

                    Je viens de te dire, tu mets EnumChatFormatting.CYAN. Exemple pour afficher du texte affiché dans dans le chat :

                    player.addChatMessage(new ChatComponentText(EnumChatFormatting.CYAN + “Bonjour MFF :”));

                    Site web contenant mes scripts : http://SCAREXgaming.github.io

                    Pas de demandes de support par MP ni par skype SVP.
                    Je n'accepte sur skype que l…

                    1 réponse Dernière réponse Répondre Citer 0
                    • Benjamin LoisonB Hors-ligne
                      Benjamin Loison
                      dernière édition par

                      C’est bon merci et .CYAN ne marche pas pour info c’est DARK_AQUA voilà 😄 bon et j’ai une autre question, j’aimerais créer une sorte de forum IG serais-ce possible ?

                      >! Développeur de Altis-Life (Arma III) sur Minecraft !
                      >! Site web     : https://lemnoslife.com

                      1 réponse Dernière réponse Répondre Citer 0
                      • robin4002R Hors-ligne
                        robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                        dernière édition par

                        Un forum IG ? Surement possible mais à mon avis pas facile.

                        1 réponse Dernière réponse Répondre Citer 0
                        • Benjamin LoisonB Hors-ligne
                          Benjamin Loison
                          dernière édition par

                          C’est mon projet 🙂 Donnez moi des directives et après déjà je verrais 🙂

                          >! Développeur de Altis-Life (Arma III) sur Minecraft !
                          >! Site web     : https://lemnoslife.com

                          1 réponse Dernière réponse Répondre Citer 0
                          • robin4002R Hors-ligne
                            robin4002 Moddeurs confirmés Rédacteurs Administrateurs
                            dernière édition par

                            J’ai jamais fait ça, donc franchement, aucune idée de comment s’y prendre.

                            1 réponse Dernière réponse Répondre Citer 0
                            • Benjamin LoisonB Hors-ligne
                              Benjamin Loison
                              dernière édition par

                              Idée de merde ^^ mieux vaut utiliser mcef pour avoir internet dans un gui ^^

                              >! Développeur de Altis-Life (Arma III) sur Minecraft !
                              >! Site web     : https://lemnoslife.com

                              1 réponse Dernière réponse Répondre Citer 0
                              • 1
                              • 2
                              • 3
                              • 1 / 3
                              • Premier message
                                Dernier message
                              Design by Woryk
                              ContactMentions Légales

                              MINECRAFT FORGE FRANCE © 2024

                              Powered by NodeBB