• Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    Solved Crash lié au custom Menu + anti x-ray

    1.7.x
    1.7.10
    5
    18
    2323
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • leo01418
      leo01418 last edited by

      Bonjour j’ai décidé de fusionné 2 mod enderdeath et enderdeathMenu(il rajoute un anti x-ray + une modification du menu )
      Donc pour commencé j’ai fait sa

      if(event.getSide().isClient())
             {
      FMLCommonHandler.instance().bus().register(this);
             }
      

      Dans le init 
      et j’ai rajouté sa ```java
        @SubscribeEvent
         @SideOnly(Side.CLIENT)
         public void onTick(TickEvent.ClientTickEvent event)
         {
             Minecraft mc = FMLClientHandler.instance().getClient();
             if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiMainMenu.class))
             {
                 mc.displayGuiScreen(new GuiCustomMenu());
             }
         }

      et ensuite j'ai fait sa dans la classe principale
      ```java
        @SubscribeEvent
         @SideOnly(Side.CLIENT)
         public void onTick(TickEvent.ClientTickEvent event)
         {
             Minecraft mc = FMLClientHandler.instance().getClient();
             if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiMainMenu.class))
             {
                 mc.displayGuiScreen(new GuiCustomMenu());
             }
         }
      
      

      Et pour finirj’ai copié collé la classe du custommenu

      package ed.enderdeath.mod.common;
      
      import java.awt.Desktop;
      import java.io.BufferedReader;
      import java.io.IOException;
      import java.io.InputStreamReader;
      import java.net.URI;
      import java.net.URISyntaxException;
      import java.util.ArrayList;
      import java.util.Calendar;
      import java.util.Date;
      import java.util.List;
      import java.util.Random;
      
      import net.minecraft.client.Minecraft;
      import net.minecraft.client.gui.FontRenderer;
      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.GuiMainMenu;
      import net.minecraft.client.gui.GuiMultiplayer;
      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.multiplayer.GuiConnecting;
      import net.minecraft.client.multiplayer.ServerData;
      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.realms.RealmsBridge;
      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 net.minecraftforge.client.event.GuiScreenEvent.ActionPerformedEvent;
      import net.minecraftforge.client.event.GuiScreenEvent.InitGuiEvent;
      import net.minecraftforge.client.event.RenderGameOverlayEvent;
      import net.minecraftforge.common.MinecraftForge;
      
      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 org.lwjgl.util.glu.Project;
      
      import com.google.common.base.Strings;
      import com.google.common.collect.Lists;
      
      import cpw.mods.fml.client.FMLClientHandler;
      import cpw.mods.fml.common.FMLCommonHandler;
      import cpw.mods.fml.common.Mod.EventHandler;
      import cpw.mods.fml.common.ObfuscationReflectionHelper;
      import cpw.mods.fml.common.eventhandler.SubscribeEvent;
      import cpw.mods.fml.relauncher.Side;
      import cpw.mods.fml.relauncher.SideOnly;
      
      @SideOnly(Side.CLIENT)
      public class GuiCustomMenu extends GuiMainMenu implements GuiYesNoCallback
      {
      
      private static final Logger logger = LogManager.getLogger();
          /** The RNG used by the Main Menu Screen. */
          private static final Random rand = new Random();
          /** Counts the number of screen updates. */
          private float updateCounter;
          /** The splash message. */
      
          private GuiButton buttonResetDemo;
          /** Timer used to rotate the panorama, increases every tick. */
          private int panoramaTimer;
          /**
           * Texture allocated for the current viewport of the main menu's panorama background.
           */
          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("texts/splashes.txt");
          private static final ResourceLocation minecraftTitleTextures = new ResourceLocation("enderdeath","textures/gui/title/enderdeath.png");
          /** An array of all the paths to the panorama pictures. */
          private final ResourceLocation backGround = new ResourceLocation("enderdeath", "textures/gui/enderdeath.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 String splashText;
          private ResourceLocation field_110351_G;
          private static final String __OBFID = "CL_00001154";
      
          public GuiCustomMenu()
          {
              this.field_146972_A = field_96138_a;
              this.splashText = "Bienvenue dans Enderdeath";
              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);
                      }
                  }
      
              }
              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";
              }
          }
      
          /**
           * Called from the main game loop to update the screen.
           */
          public void updateScreen()
          {
              ++this.panoramaTimer;
          }
      
          /**
           * Returns true if this GUI should pause the game when it is displayed in single-player
           */
          public boolean doesGuiPauseGame()
          {
              return false;
          }
      
          /**
           * Fired when a key is typed. This is the equivalent of KeyListener.keyTyped(KeyEvent e).
           */
          protected void keyTyped(char p_73869_1_, int p_73869_2_)
          {}
      
          /**
           * Adds the buttons (and other controls) to the screen in question.
           */
          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());
      
              boolean flag = true;
              int i = this.height / 4 + 48;
      
              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;
              }
          }
      
          /**
           * Adds Singleplayer and Multiplayer buttons on Main Menu for players who have bought the game.
           */
          private void addSingleplayerMultiplayerButtons(int x, int y)
          {
              this.buttonList.add(new GuiButton(1, this.width / 2 - 100, x, 98, 20, I18n.format("menu.singleplayer")));
              this.buttonList.add(new GuiButton(2, this.width / 2 + 2, x + 0, 98, 20, I18n.format("menu.multiplayer")));
              this.buttonList.add(new GuiButton(20, this.width / 2 - 100, x + y * 1, "Buuton serveur"));
              GuiButton webSiteButton = new GuiButton(21, this.width / 2 - 100, x + y * 2, "Bouton site");
              GuiButton fmlModButton = new GuiButton(6, this.width / 2 - 100, x + y * 2, "Mods");
              fmlModButton.xPosition = this.width / 2 + 2;
              webSiteButton.width = 98;
              fmlModButton.width = 98;
              this.buttonList.add(webSiteButton);
              this.buttonList.add(fmlModButton);
          }
      
          /**
           * Adds Demo buttons on Main Menu for players who are playing Demo.
           */
      
          /**
           * Draws the main menu panorama
           */
      
          /**
           * Rotate and blurs the skybox view in the main menu
           */
      
          /**
           * Renders the skybox in the main menu
           */
      
          /**
           * Draws the screen and all the components in it.
           */
          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();
          }
          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();
              String s = "Minecraft 1.7.10";
      
              if(this.mc.isDemo())
              {
                  s = s + " Demo";
              }
      
              List <string>brandings = Lists.reverse(FMLCommonHandler.instance().getBrandings(true));
              for(int i = 0; i < brandings.size(); i++)
              {
                  String brd = brandings.get(i);
                  if(!Strings.isNullOrEmpty(brd))
                  {
                      this.drawString(this.fontRendererObj, brd, 2, this.height - (10 + i * (this.fontRendererObj.FONT_HEIGHT + 1)), 16777215);
                  }
              }
              String s1 = "Copyright Mojang AB. Do not distribute!";
              this.drawString(this.fontRendererObj, s1, this.width - this.fontRendererObj.getStringWidth(s1) - 2, this.height - 10, -1);
      
              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);
          }
      
          /**
           * Called when the mouse is clicked.
           */
      
          @SubscribeEvent
        public void onInitGuiEven(InitGuiEvent.Post event)
           {
        if (event.gui instanceof GuiMainMenu) { // On regarde si le gui est bien le menu principal
        for (Object b : event.buttonList) { // On parcourt la liste des boutons
        if (((GuiButton) b).id == 2) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
        ((GuiButton) b).visible = false; // On ne l'affiche plus
        }
        if (((GuiButton) b).id == 1) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
        ((GuiButton) b).visible = false; // On ne l'affiche plus
        }
        if (((GuiButton) b).id == 6) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
        ((GuiButton) b).visible = false; // On ne l'affiche plus
        }
        if (((GuiButton) b).id == 5) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
        ((GuiButton) b).visible = false; // On ne l'affiche plus
        }
        if (((GuiButton) b).id == 0) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
        ((GuiButton) b).visible = false; // On ne l'affiche plus
        }
      
        if (((GuiButton) b).id == 4) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
        ((GuiButton) b).visible = false; // On ne l'affiche plus
        }
      
        }
      
        }
        }
      
          @SubscribeEvent
      public void onInitGuiEvent(InitGuiEvent.Post event)
          {
      if (event.gui instanceof GuiMainMenu) { 
      for (Object b : event.buttonList) {
      if (((GuiButton) b).id == 14) {
      ((GuiButton) b).visible = false; 
      }
      }
      int i = event.gui.height / 6 + 30; 
      event.buttonList.add(new GuiButton(60, event.gui.width / 2 - 100, i + 24 * 2, 175, 20, "Rejoindre le serveur") { 
      
      });
      int ia = event.gui.height /2 + 15;
      event.buttonList.add(new GuiButton(32, event.gui.width /  2 - 55, ia + 24 * 2, 100, 20, "Site internet") { 
      
      });
      int iq = event.gui.height / 2 + 15; 
      event.buttonList.add(new GuiButton(33, event.gui.width / 1 - 154, iq + 24 * 2, 50, 20, "Youtube") { 
      
      });
      int iqs = event.gui.height / 2 + 15; 
      event.buttonList.add(new GuiButton(34, event.gui.width / 3 - 45, iqs + 24 * 2, 50, 20, "Twitter") { 
      
      });
      int ib = event.gui.height / 3 + 25;
      event.buttonList.add(new GuiButton(30, event.gui.width / 2 - 80, ib + 24 * 2, 150, 20,( "Teamspeak")) { 
      @Override
      public void mouseReleased(int x, int y) { 
      if (Desktop.isDesktopSupported()) { 
      try {
      Desktop.getDesktop().browse(new URI("ts3server://ts.enderdeath.fr?port=9987"));
      } catch (Exception e) {
      
      }
      }
      }
      
      });
      
      }
      }
      
          @SubscribeEvent
        public void onActionPerformedA(ActionPerformedEvent.Pre event) {
        if (event.gui instanceof GuiOptions && event.button.id == 104) event.setCanceled(true); 
      
          }
      
      @SubscribeEvent
      public void onActionPerformed(ActionPerformedEvent.Pre event)
      {
      if (event.gui instanceof GuiMainMenu)
      {
          if(event.button.id == 32)
          {
               try {
      Desktop.getDesktop().browse(new URI("http://www.minecraftforgefrance.fr/"));
               }
       catch(Throwable throwable)
             {
                 logger.error("Couldn\'t open link", throwable);
             }
          }
          else if(event.button.id == 60)
          {
          FMLClientHandler.instance().connectToServerAtStartup("62.210.62.194",10048);
             ;
          }
      }
      
      }
      }
      
      

      Mais dés que je lance le jeu crash
      crash report

      [15:26:41] [main/INFO] [GradleStart]: Extra: []
      [15:26:41] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --assetsDir, C:/Users/Eric/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
      [15:26:41] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
      [15:26:41] [main/INFO] [FML]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading
      [15:26:41] [main/INFO] [FML]: Java is Java HotSpot(TM) Client VM, version 1.8.0_71, running on Windows 8.1:x86:6.3, installed at C:\Program Files (x86)\Java\jre1.8.0_71
      [15:26:41] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
      [15:26:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
      [15:26:41] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
      [15:26:41] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
      [15:26:41] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
      [15:26:41] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
      [15:26:41] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
      [15:26:43] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
      [15:26:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
      [15:26:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
      [15:26:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
      [15:26:43] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
      [15:26:43] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
      [15:26:43] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
      [15:26:44] [main/INFO]: Setting user: Player981
      [15:26:45] [Client thread/INFO]: LWJGL Version: 2.9.1
      [15:26:46] [Client thread/INFO] [STDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
      [15:26:46] [Client thread/ERROR]: Couldn't initialize twitch stream
      [15:26:46] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: –-- Minecraft Crash Report ----
      // Ooh. Shiny.
      
      Time: 12/04/16 15:26
      Description: Loading screen debug info
      
      This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
      
      A detailed walkthrough of the error, its code path and all known details is as follows:
      ---------------------------------------------------------------------------------------
      
      -- System Details --
      Details:
      Minecraft Version: 1.7.10
      Operating System: Windows 8.1 (x86) version 6.3
      Java Version: 1.8.0_71, Oracle Corporation
      Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
      Memory: 968287648 bytes (923 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
      JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
      AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
      IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
      FML: 
      GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 350.12' Renderer: 'GeForce GTX 745/PCIe/SSE2'
      [15:26:46] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
      [15:26:46] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1558 Initialized
      [15:26:46] [Client thread/INFO] [FML]: Replaced 183 ore recipies
      [15:26:46] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
      [15:26:47] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
      [15:26:47] [Client thread/INFO] [FML]: Searching C:\Users\Eric\Desktop\EnderMod\eclipse\mods for mods
      [15:26:54] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
      [15:26:55] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, enderdeath] at CLIENT
      [15:26:55] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, enderdeath] at SERVER
      [15:26:55] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:leo01418
      [15:26:55] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
      [15:26:55] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
      [15:26:55] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
      [15:26:55] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
      [15:26:55] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
      [15:26:55] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.common.enderdeath:preInit:482]: preInit
      [15:26:55] [Client thread/INFO] [FML]: Applying holder lookups
      [15:26:55] [Client thread/INFO] [FML]: Holder lookups applied
      [15:26:55] [Client thread/INFO] [FML]: Injecting itemstacks
      [15:26:55] [Client thread/INFO] [FML]: Itemstack injection complete
      [15:26:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
      [15:26:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
      [15:26:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
      [15:26:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
      [15:26:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
      [15:26:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
      [15:26:56] [Sound Library Loader/INFO]: Sound engine started
      [15:26:58] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
      [15:26:58] [Client thread/INFO]: Created: 16x16 textures/items-atlas
      [15:26:58] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.proxy.ClientProxy:registerRender:69]: client
      [15:26:58] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.common.enderdeath:init:2074]: init
      [15:26:58] [Client thread/INFO] [FML]: Injecting itemstacks
      [15:26:58] [Client thread/INFO] [FML]: Itemstack injection complete
      [15:26:58] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.common.enderdeath:postInit:2096]: Postinit
      [15:26:58] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
      [15:26:58] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:leo01418
      [15:26:58] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
      [15:26:59] [Client thread/INFO]: Created: 512x256 textures/items-atlas
      [15:26:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
      [15:26:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down…
      [15:26:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
      [15:26:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
      [15:26:59] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
      [15:26:59] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
      [15:26:59] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
      [15:26:59] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
      [15:26:59] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
      [15:26:59] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
      [15:26:59] [Sound Library Loader/INFO]: Sound engine started
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN minecraft
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:   domain minecraft is missing 1 texture
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     domain minecraft has 3 locations:
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       mod FML resources at C:\Users\Eric\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       mod Forge resources at C:\Users\Eric\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain minecraft are:
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/MISSING_ICON_ITEM_4180_InvisibleBlock.png
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain minecraft
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN enderdeath
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:   domain enderdeath is missing 3 textures
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     domain enderdeath has 1 location:
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       mod enderdeath resources at C:\Users\Eric\Desktop\EnderMod\bin
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain enderdeath are:
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/FeatherHelmet.png
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/MultiTool.png
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/bow_pull3.png
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain enderdeath
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN enderdeathfeatherleggings
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:   domain enderdeathfeatherleggings is missing 1 texture
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     domain enderdeathfeatherleggings is missing a resource manager - it is probably a side-effect of automatic texture processing
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain enderdeathfeatherleggings are:
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/.png
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain enderdeathfeatherleggings
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
      [15:27:01] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
      [15:27:01] [Client thread/WARN]: Failed to load texture: enderdeath:textures/gui/title/enderdeath.png
      java.io.FileNotFoundException: enderdeath:textures/gui/title/enderdeath.png
      at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]
      at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[SimpleReloadableResourceManager.class:?]
      at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35) ~[SimpleTexture.class:?]
      at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]
      at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45) [TextureManager.class:?]
      at ed.enderdeath.mod.common.GuiCustomMenu.drawScreen(GuiCustomMenu.java:285) [GuiCustomMenu.class:?]
      at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) [EntityRenderer.class:?]
      at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067) [Minecraft.class:?]
      at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
      at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]
      at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]
      at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
      at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
      at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
      at GradleStart.main(Unknown Source) [start/:?]
      [15:27:01] [Client thread/FATAL]: Reported exception thrown!
      net.minecraft.util.ReportedException: Registering texture
      at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1168) ~[EntityRenderer.class:?]
      at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067) ~[Minecraft.class:?]
      at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
      at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]
      at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]
      at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
      at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
      at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
      at GradleStart.main(Unknown Source) [start/:?]
      Caused by: java.lang.NullPointerException
      at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63) ~[SimpleReloadableResourceManager.class:?]
      at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35) ~[SimpleTexture.class:?]
      at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) ~[TextureManager.class:?]
      at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45) ~[TextureManager.class:?]
      at net.minecraft.client.gui.GuiMainMenu.rotateAndBlurSkybox(GuiMainMenu.java:430) ~[GuiMainMenu.class:?]
      at net.minecraft.client.gui.GuiMainMenu.renderSkybox(GuiMainMenu.java:467) ~[GuiMainMenu.class:?]
      at net.minecraft.client.gui.GuiMainMenu.drawScreen(GuiMainMenu.java:497) ~[GuiMainMenu.class:?]
      at ed.enderdeath.mod.common.GuiCustomMenu.drawScreen(GuiCustomMenu.java:337) ~[GuiCustomMenu.class:?]
      at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) ~[EntityRenderer.class:?]
      … 11 more
      [15:27:01] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: –-- Minecraft Crash Report ----
      // There are four lights!
      
      Time: 12/04/16 15:27
      Description: Registering texture
      
      java.lang.NullPointerException: Registering texture
      at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)
      at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35)
      at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)
      at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45)
      at net.minecraft.client.gui.GuiMainMenu.rotateAndBlurSkybox(GuiMainMenu.java:430)
      at net.minecraft.client.gui.GuiMainMenu.renderSkybox(GuiMainMenu.java:467)
      at net.minecraft.client.gui.GuiMainMenu.drawScreen(GuiMainMenu.java:497)
      at ed.enderdeath.mod.common.GuiCustomMenu.drawScreen(GuiCustomMenu.java:337)
      at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137)
      at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067)
      at net.minecraft.client.Minecraft.run(Minecraft.java:962)
      at net.minecraft.client.main.Main.main(Main.java:164)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
      at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
      at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
      at GradleStart.main(Unknown Source)
      
      A detailed walkthrough of the error, its code path and all known details is as follows:
      ---------------------------------------------------------------------------------------
      
      -- Head --
      Stacktrace:
      at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)
      at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35)
      
      -- Resource location being registered --
      Details:
      Resource location: ~~NULL~~
      Texture object class: net.minecraft.client.renderer.texture.SimpleTexture
      Stacktrace:
      at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)
      at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45)
      at net.minecraft.client.gui.GuiMainMenu.rotateAndBlurSkybox(GuiMainMenu.java:430)
      at net.minecraft.client.gui.GuiMainMenu.renderSkybox(GuiMainMenu.java:467)
      at net.minecraft.client.gui.GuiMainMenu.drawScreen(GuiMainMenu.java:497)
      at ed.enderdeath.mod.common.GuiCustomMenu.drawScreen(GuiCustomMenu.java:337)
      
      -- Screen render details --
      Details:
      Screen name: ed.enderdeath.mod.common.GuiCustomMenu
      Mouse location: Scaled: (0, 239). Absolute: (0, 0)
      Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2
      Stacktrace:
      at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137)
      at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067)
      at net.minecraft.client.Minecraft.run(Minecraft.java:962)
      at net.minecraft.client.main.Main.main(Main.java:164)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
      at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
      at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
      at GradleStart.main(Unknown Source)
      
      -- System Details --
      Details:
      Minecraft Version: 1.7.10
      Operating System: Windows 8.1 (x86) version 6.3
      Java Version: 1.8.0_71, Oracle Corporation
      Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
      Memory: 849678040 bytes (810 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
      JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
      AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
      IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
      FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 4 mods loaded, 4 mods active
      States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
      UCHIJA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) 
      UCHIJA FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar) 
      UCHIJA Forge{10.13.4.1558} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar) 
      UCHIJA enderdeath{1.0} [leo01418] (bin) 
      GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 350.12' Renderer: 'GeForce GTX 745/PCIe/SSE2'
      Launched Version: 1.7.10
      LWJGL: 2.9.1
      OpenGL: GeForce GTX 745/PCIe/SSE2 GL version 4.5.0 NVIDIA 350.12, NVIDIA Corporation
      GL Caps: Using GL 1.3 multitexturing.
      Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
      Anisotropic filtering is supported and maximum anisotropy is 16.
      Shaders are available because OpenGL 2.1 is supported.
      
      Is Modded: Definitely; Client brand changed to 'fml,forge'
      Type: Client (map_client.txt)
      Resource Packs: [Ore Finder 1.7+ by YellowW.zip]
      Current Language: English (US)
      Profiler Position: N/A (disabled)
      Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
      Anisotropic Filtering: Off (1)
      [15:27:01] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Eric\Desktop\EnderMod\eclipse\.\crash-reports\crash-2016-04-12_15.27.01-client.txt
      AL lib: (EE) alc_cleanup: 1 device not closed
      Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
      
      

      Merci de votre Aide  :-3

      Et pour anti-xray je sais pas comment le mettre dans mon mod principale

      Excusez des fautes ^^</init></string>

      Voila ma signature

      1 Reply Last reply Reply Quote 0
      • Deleted
        Deleted last edited by

        Y’a quoi là ? GuiCustomMenu.java:337
        Et ta texture enderdeath est sûrement au mauvais endroit, car le jeu ne la trouve pas.

        1 Reply Last reply Reply Quote 0
        • leo01418
          leo01418 last edited by

          Sa

          super.drawScreen(x, y, partialTick);
          

          Pour sa

          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();
                  String s = "Minecraft 1.7.10";
          
                  if(this.mc.isDemo())
                  {
                      s = s + " Demo";
                  }
          
                  List <string>brandings = Lists.reverse(FMLCommonHandler.instance().getBrandings(true));
                  for(int i = 0; i < brandings.size(); i++)
                  {
                      String brd = brandings.get(i);
                      if(!Strings.isNullOrEmpty(brd))
                      {
                          this.drawString(this.fontRendererObj, brd, 2, this.height - (10 + i * (this.fontRendererObj.FONT_HEIGHT + 1)), 16777215);
                      }
                  }
                  String s1 = "Copyright Mojang AB. Do not distribute!";
                  this.drawString(this.fontRendererObj, s1, this.width - this.fontRendererObj.getStringWidth(s1) - 2, this.height - 10, -1);
          
                  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);
              }
          ```</string>

          Voila ma signature

          1 Reply Last reply Reply Quote 0
          • SCAREX
            SCAREX last edited by

            “java.io.FileNotFoundException: enderdeath:textures/gui/title/enderdeath.png” t’as texture n’est pas trouvée ou n’existe pas

            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 Reply Last reply Reply Quote 0
            • leo01418
              leo01418 last edited by

              J’ai mis une texture mais sa fais toujours un crash

              [16:20:36] [main/INFO] [GradleStart]: Extra: []
              [16:20:36] [main/INFO] [GradleStart]: Running with arguments: [–userProperties, {}, --assetsDir, C:/Users/Eric/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
              [16:20:36] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
              [16:20:36] [main/INFO] [FML]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading
              [16:20:36] [main/INFO] [FML]: Java is Java HotSpot(TM) Client VM, version 1.8.0_71, running on Windows 8.1:x86:6.3, installed at C:\Program Files (x86)\Java\jre1.8.0_71
              [16:20:36] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
              [16:20:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
              [16:20:36] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin
              [16:20:36] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
              [16:20:36] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
              [16:20:36] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
              [16:20:36] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
              [16:20:38] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
              [16:20:38] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
              [16:20:38] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
              [16:20:38] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
              [16:20:38] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker
              [16:20:38] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker
              [16:20:38] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
              [16:20:39] [main/INFO]: Setting user: Player51
              [16:20:41] [Client thread/INFO]: LWJGL Version: 2.9.1
              [16:20:42] [Client thread/INFO] [STDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
              [16:20:42] [Client thread/ERROR]: Couldn't initialize twitch stream
              [16:20:42] [Client thread/INFO] [STDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: –-- Minecraft Crash Report ----
              // Shall we play a game?
              
              Time: 12/04/16 16:20
              Description: Loading screen debug info
              
              This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR
              
              A detailed walkthrough of the error, its code path and all known details is as follows:
              ---------------------------------------------------------------------------------------
              
              -- System Details --
              Details:
              Minecraft Version: 1.7.10
              Operating System: Windows 8.1 (x86) version 6.3
              Java Version: 1.8.0_71, Oracle Corporation
              Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
              Memory: 966914320 bytes (922 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
              JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
              AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
              IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
              FML: 
              GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 350.12' Renderer: 'GeForce GTX 745/PCIe/SSE2'
              [16:20:42] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization
              [16:20:42] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1558 Initialized
              [16:20:42] [Client thread/INFO] [FML]: Replaced 183 ore recipies
              [16:20:42] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization
              [16:20:43] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
              [16:20:43] [Client thread/INFO] [FML]: Searching C:\Users\Eric\Desktop\EnderMod\eclipse\mods for mods
              [16:20:52] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
              [16:20:55] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, enderdeath] at CLIENT
              [16:20:55] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, enderdeath] at SERVER
              [16:20:55] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:leo01418
              [16:20:55] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
              [16:20:55] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations
              [16:20:55] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
              [16:20:55] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
              [16:20:55] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
              [16:20:55] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.common.enderdeath:preInit:482]: preInit
              [16:20:56] [Client thread/INFO] [FML]: Applying holder lookups
              [16:20:56] [Client thread/INFO] [FML]: Holder lookups applied
              [16:20:56] [Client thread/INFO] [FML]: Injecting itemstacks
              [16:20:56] [Client thread/INFO] [FML]: Itemstack injection complete
              [16:20:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
              [16:20:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
              [16:20:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
              [16:20:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
              [16:20:56] [Thread-8/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
              [16:20:56] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
              [16:20:56] [Sound Library Loader/INFO]: Sound engine started
              [16:20:58] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas
              [16:20:58] [Client thread/INFO]: Created: 16x16 textures/items-atlas
              [16:20:58] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.proxy.ClientProxy:registerRender:69]: client
              [16:20:58] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.common.enderdeath:init:2074]: init
              [16:20:58] [Client thread/INFO] [FML]: Injecting itemstacks
              [16:20:58] [Client thread/INFO] [FML]: Itemstack injection complete
              [16:20:58] [Client thread/INFO] [STDOUT]: [ed.enderdeath.mod.common.enderdeath:postInit:2096]: Postinit
              [16:20:58] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
              [16:20:58] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:leo01418
              [16:20:58] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas
              [16:20:59] [Client thread/INFO]: Created: 512x256 textures/items-atlas
              [16:20:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
              [16:20:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down…
              [16:20:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:     Author: Paul Lamb, www.paulscode.com
              [16:20:59] [Client thread/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
              [16:20:59] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
              [16:20:59] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem…
              [16:20:59] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL
              [16:20:59] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
              [16:20:59] [Thread-10/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.
              [16:20:59] [Sound Library Loader/INFO] [STDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: 
              [16:20:59] [Sound Library Loader/INFO]: Sound engine started
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN minecraft
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:   domain minecraft is missing 1 texture
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     domain minecraft has 3 locations:
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       mod FML resources at C:\Users\Eric\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       mod Forge resources at C:\Users\Eric\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain minecraft are:
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/MISSING_ICON_ITEM_4180_InvisibleBlock.png
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain minecraft
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN enderdeath
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:   domain enderdeath is missing 3 textures
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     domain enderdeath has 1 location:
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       mod enderdeath resources at C:\Users\Eric\Desktop\EnderMod\bin
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain enderdeath are:
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/FeatherHelmet.png
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/MultiTool.png
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/bow_pull3.png
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain enderdeath
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN enderdeathfeatherleggings
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –------------------------------------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:   domain enderdeathfeatherleggings is missing 1 texture
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     domain enderdeathfeatherleggings is missing a resource manager - it is probably a side-effect of automatic texture processing
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain enderdeathfeatherleggings are:
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/items/.png
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: –-----------------------
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain enderdeathfeatherleggings
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
              [16:21:01] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
              [16:21:01] [Client thread/FATAL]: Reported exception thrown!
              net.minecraft.util.ReportedException: Registering texture
              at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1168) ~[EntityRenderer.class:?]
              at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067) ~[Minecraft.class:?]
              at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
              at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_71]
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_71]
              at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_71]
              at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
              at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
              at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
              at GradleStart.main(Unknown Source) [start/:?]
              Caused by: java.lang.NullPointerException
              at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63) ~[SimpleReloadableResourceManager.class:?]
              at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35) ~[SimpleTexture.class:?]
              at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) ~[TextureManager.class:?]
              at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45) ~[TextureManager.class:?]
              at net.minecraft.client.gui.GuiMainMenu.rotateAndBlurSkybox(GuiMainMenu.java:430) ~[GuiMainMenu.class:?]
              at net.minecraft.client.gui.GuiMainMenu.renderSkybox(GuiMainMenu.java:467) ~[GuiMainMenu.class:?]
              at net.minecraft.client.gui.GuiMainMenu.drawScreen(GuiMainMenu.java:497) ~[GuiMainMenu.class:?]
              at ed.enderdeath.mod.common.GuiCustomMenu.drawScreen(GuiCustomMenu.java:337) ~[GuiCustomMenu.class:?]
              at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) ~[EntityRenderer.class:?]
              … 11 more
              [16:21:01] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: –-- Minecraft Crash Report ----
              // My bad.
              
              Time: 12/04/16 16:21
              Description: Registering texture
              
              java.lang.NullPointerException: Registering texture
              at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)
              at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35)
              at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)
              at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45)
              at net.minecraft.client.gui.GuiMainMenu.rotateAndBlurSkybox(GuiMainMenu.java:430)
              at net.minecraft.client.gui.GuiMainMenu.renderSkybox(GuiMainMenu.java:467)
              at net.minecraft.client.gui.GuiMainMenu.drawScreen(GuiMainMenu.java:497)
              at ed.enderdeath.mod.common.GuiCustomMenu.drawScreen(GuiCustomMenu.java:337)
              at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137)
              at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067)
              at net.minecraft.client.Minecraft.run(Minecraft.java:962)
              at net.minecraft.client.main.Main.main(Main.java:164)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
              at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
              at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
              at GradleStart.main(Unknown Source)
              
              A detailed walkthrough of the error, its code path and all known details is as follows:
              ---------------------------------------------------------------------------------------
              
              -- Head --
              Stacktrace:
              at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)
              at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SimpleTexture.java:35)
              
              -- Resource location being registered --
              Details:
              Resource location: ~~NULL~~
              Texture object class: net.minecraft.client.renderer.texture.SimpleTexture
              Stacktrace:
              at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)
              at net.minecraft.client.renderer.texture.TextureManager.bindTexture(TextureManager.java:45)
              at net.minecraft.client.gui.GuiMainMenu.rotateAndBlurSkybox(GuiMainMenu.java:430)
              at net.minecraft.client.gui.GuiMainMenu.renderSkybox(GuiMainMenu.java:467)
              at net.minecraft.client.gui.GuiMainMenu.drawScreen(GuiMainMenu.java:497)
              at ed.enderdeath.mod.common.GuiCustomMenu.drawScreen(GuiCustomMenu.java:337)
              
              -- Screen render details --
              Details:
              Screen name: ed.enderdeath.mod.common.GuiCustomMenu
              Mouse location: Scaled: (243, 190). Absolute: (486, 98)
              Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2
              Stacktrace:
              at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137)
              at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067)
              at net.minecraft.client.Minecraft.run(Minecraft.java:962)
              at net.minecraft.client.main.Main.main(Main.java:164)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
              at java.lang.reflect.Method.invoke(Unknown Source)
              at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
              at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
              at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
              at GradleStart.main(Unknown Source)
              
              -- System Details --
              Details:
              Minecraft Version: 1.7.10
              Operating System: Windows 8.1 (x86) version 6.3
              Java Version: 1.8.0_71, Oracle Corporation
              Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
              Memory: 830931144 bytes (792 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
              JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
              AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
              IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
              FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 4 mods loaded, 4 mods active
              States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
              UCHIJA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) 
              UCHIJA FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar) 
              UCHIJA Forge{10.13.4.1558} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar) 
              UCHIJA enderdeath{1.0} [leo01418] (bin) 
              GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 350.12' Renderer: 'GeForce GTX 745/PCIe/SSE2'
              Launched Version: 1.7.10
              LWJGL: 2.9.1
              OpenGL: GeForce GTX 745/PCIe/SSE2 GL version 4.5.0 NVIDIA 350.12, NVIDIA Corporation
              GL Caps: Using GL 1.3 multitexturing.
              Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
              Anisotropic filtering is supported and maximum anisotropy is 16.
              Shaders are available because OpenGL 2.1 is supported.
              
              Is Modded: Definitely; Client brand changed to 'fml,forge'
              Type: Client (map_client.txt)
              Resource Packs: [Ore Finder 1.7+ by YellowW.zip]
              Current Language: English (US)
              Profiler Position: N/A (disabled)
              Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
              Anisotropic Filtering: Off (1)
              [16:21:01] [Client thread/INFO] [STDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Eric\Desktop\EnderMod\eclipse\.\crash-reports\crash-2016-04-12_16.21.01-client.txt
              AL lib: (EE) alc_cleanup: 1 device not closed
              Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
              
              ```</init>

              Voila ma signature

              1 Reply Last reply Reply Quote 0
              • SCAREX
                SCAREX last edited by

                Il faudrait que tu fasses un copier-coller de la classe GuiMainMenu car la texture utilisée n’est pas la tienne, or je pense que tu n’arriveras pas à la modifier facilement

                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 Reply Last reply Reply Quote 0
                • leo01418
                  leo01418 last edited by

                  Sa à arrété de crash donc j’ai mis mes boutons personnel et surprimé les ancien logique et quand j’allume mon jeux il à aucun boutons O_o

                  package ed.enderdeath.mod.common;
                  
                  import java.awt.Desktop;
                  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.List;
                  import java.util.Random;
                  
                  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 org.lwjgl.util.glu.Project;
                  
                  import com.google.common.base.Strings;
                  import com.google.common.collect.Lists;
                  
                  import cpw.mods.fml.client.FMLClientHandler;
                  import cpw.mods.fml.common.FMLCommonHandler;
                  import cpw.mods.fml.common.eventhandler.SubscribeEvent;
                  import cpw.mods.fml.relauncher.Side;
                  import cpw.mods.fml.relauncher.SideOnly;
                  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.GuiMainMenu;
                  import net.minecraft.client.gui.GuiOptions;
                  import net.minecraft.client.gui.GuiScreen;
                  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.realms.RealmsBridge;
                  import net.minecraft.util.EnumChatFormatting;
                  import net.minecraft.util.MathHelper;
                  import net.minecraft.util.ResourceLocation;
                  import net.minecraft.world.storage.ISaveFormat;
                  import net.minecraft.world.storage.WorldInfo;
                  import net.minecraftforge.client.event.GuiScreenEvent.ActionPerformedEvent;
                  import net.minecraftforge.client.event.GuiScreenEvent.InitGuiEvent;
                  
                  @SideOnly(Side.CLIENT)
                  public class GuiCustomMenu extends GuiScreen implements GuiYesNoCallback
                  {
                      private static final Logger logger = LogManager.getLogger();
                      /** The RNG used by the Main Menu Screen. */
                      private static final Random rand = new Random();
                      /** Counts the number of screen updates. */
                      private float updateCounter;
                      /** The splash message. */
                      private String splashText;
                      private GuiButton buttonResetDemo;
                      /** Timer used to rotate the panorama, increases every tick. */
                      private int panoramaTimer;
                      /** Texture allocated for the current viewport of the main menu's panorama background. */
                      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("texts/splashes.txt");
                      private static final ResourceLocation minecraftTitleTextures = new ResourceLocation("textures/gui/title/minecraft.png");
                      /** An array of all the paths to the panorama pictures. */
                      private static final ResourceLocation[] titlePanoramaPaths = new ResourceLocation[] {new ResourceLocation("textures/gui/title/background/panorama_0.png"), new ResourceLocation("textures/gui/title/background/panorama_1.png"), new ResourceLocation("textures/gui/title/background/panorama_2.png"), new ResourceLocation("textures/gui/title/background/panorama_3.png"), new ResourceLocation("textures/gui/title/background/panorama_4.png"), new ResourceLocation("textures/gui/title/background/panorama_5.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";
                  
                      public GuiCustomMenu()
                      {
                          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";
                          }
                      }
                  
                      /**
                       * Called from the main game loop to update the screen.
                       */
                      public void updateScreen()
                      {
                          ++this.panoramaTimer;
                      }
                  
                      /**
                       * Returns true if this GUI should pause the game when it is displayed in single-player
                       */
                      public boolean doesGuiPauseGame()
                      {
                          return false;
                      }
                  
                      /**
                       * Fired when a key is typed. This is the equivalent of KeyListener.keyTyped(KeyEvent e).
                       */
                      protected void keyTyped(char p_73869_1_, int p_73869_2_) {}
                  
                      /**
                       * Adds the buttons (and other controls) to the screen in question.
                       */
                      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!";
                          }
                  
                          boolean flag = true;
                          int i = this.height / 4 + 48;
                  
                          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_92020_v = this.field_92022_t + j;
                              this.field_92019_w = this.field_92021_u + 24;
                          }
                      }
                  
                      /**
                       * Adds Singleplayer and Multiplayer buttons on Main Menu for players who have bought the game.
                       */
                    /*
                       * Adds Demo buttons on Main Menu for players who are playing Demo.
                       */
                      private void addDemoButtons(int p_73972_1_, int p_73972_2_)
                      {
                          this.buttonList.add(new GuiButton(11, this.width / 2 - 100, p_73972_1_, I18n.format("menu.playdemo", new Object[0])));
                          this.buttonList.add(this.buttonResetDemo = new GuiButton(12, this.width / 2 - 100, p_73972_1_ + p_73972_2_ * 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;
                          }
                      }
                  
                      public void onActionPerformed(ActionPerformedEvent.Pre event)
                      {
                      if (event.gui instanceof GuiMainMenu)
                      {
                          if(event.button.id == 32)
                          {
                               try {
                      Desktop.getDesktop().browse(new URI("http://www.minecraftforgefrance.fr/"));
                               }
                       catch(Throwable throwable)
                             {
                                 logger.error("Couldn\'t open link", throwable);
                             }
                          }
                          else if(event.button.id == 60)
                          {
                          FMLClientHandler.instance().connectToServerAtStartup("62.210.62.194",10048);
                             ;
                          }
                      }
                  
                      }
                      @SubscribeEvent
                    public void onInitGuiEven(InitGuiEvent.Post event)
                       {
                    if (event.gui instanceof GuiMainMenu) { // On regarde si le gui est bien le menu principal
                    for (Object b : event.buttonList) { // On parcourt la liste des boutons
                    if (((GuiButton) b).id == 2) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                    ((GuiButton) b).visible = false; // On ne l'affiche plus
                    }
                    if (((GuiButton) b).id == 1) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                    ((GuiButton) b).visible = false; // On ne l'affiche plus
                    }
                    if (((GuiButton) b).id == 6) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                    ((GuiButton) b).visible = false; // On ne l'affiche plus
                    }
                    if (((GuiButton) b).id == 5) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                    ((GuiButton) b).visible = false; // On ne l'affiche plus
                    }
                    if (((GuiButton) b).id == 0) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                    ((GuiButton) b).visible = false; // On ne l'affiche plus
                    }
                  
                    if (((GuiButton) b).id == 4) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                    ((GuiButton) b).visible = false; // On ne l'affiche plus
                    }
                  
                    }
                  
                    }
                    }
                  
                      @SubscribeEvent
                  public void onInitGuiEvent(InitGuiEvent.Post event)
                      {
                  if (event.gui instanceof GuiMainMenu) { 
                  for (Object b : event.buttonList) {
                  if (((GuiButton) b).id == 14) {
                  ((GuiButton) b).visible = false; 
                  }
                  }
                  int i = event.gui.height / 6 + 30; 
                  event.buttonList.add(new GuiButton(60, event.gui.width / 2 - 100, i + 24 * 2, 175, 20, "Rejoindre le serveur") { 
                  
                  });
                  int ia = event.gui.height /2 + 15;
                  event.buttonList.add(new GuiButton(32, event.gui.width /  2 - 55, ia + 24 * 2, 100, 20, "Site internet") { 
                  
                  });
                  int iq = event.gui.height / 2 + 15; 
                  event.buttonList.add(new GuiButton(33, event.gui.width / 1 - 154, iq + 24 * 2, 50, 20, "Youtube") { 
                  
                  });
                  int iqs = event.gui.height / 2 + 15; 
                  event.buttonList.add(new GuiButton(34, event.gui.width / 3 - 45, iqs + 24 * 2, 50, 20, "Twitter") { 
                  
                  });
                  int ib = event.gui.height / 3 + 25;
                  event.buttonList.add(new GuiButton(30, event.gui.width / 2 - 80, ib + 24 * 2, 150, 20,( "Teamspeak")) { 
                  @Override
                  public void mouseReleased(int x, int y) { 
                  if (Desktop.isDesktopSupported()) { 
                  try {
                  Desktop.getDesktop().browse(new URI("ts3server://ts.enderdeath.fr?port=9987"));
                  } catch (Exception e) {
                  
                  }
                  }
                  }
                  
                  });
                  
                  }
                  }
                  
                      @SubscribeEvent
                    public void onActionPerformedA(ActionPerformedEvent.Pre event) {
                    if (event.gui instanceof GuiOptions && event.button.id == 104) event.setCanceled(true); 
                  
                      }
                  
                      private void func_140005_i()
                      {
                          RealmsBridge realmsbridge = new RealmsBridge();
                          realmsbridge.switchToRealms(this);
                      }
                  
                      public void confirmClicked(boolean p_73878_1_, int p_73878_2_)
                      {
                          if (p_73878_1_ && p_73878_2_ == 12)
                          {
                              ISaveFormat isaveformat = this.mc.getSaveLoader();
                              isaveformat.flushCache();
                              isaveformat.deleteWorldDirectory("Demo_World");
                              this.mc.displayGuiScreen(this);
                          }
                          else if (p_73878_2_ == 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);
                          }
                      }
                  
                      /**
                       * Draws the main menu panorama
                       */
                      private void drawPanorama(int p_73970_1_, int p_73970_2_, float p_73970_3_)
                      {
                          Tessellator tessellator = Tessellator.instance;
                          GL11.glMatrixMode(GL11.GL_PROJECTION);
                          GL11.glPushMatrix();
                          GL11.glLoadIdentity();
                          Project.gluPerspective(120.0F, 1.0F, 0.05F, 10.0F);
                          GL11.glMatrixMode(GL11.GL_MODELVIEW);
                          GL11.glPushMatrix();
                          GL11.glLoadIdentity();
                          GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
                          GL11.glRotatef(180.0F, 1.0F, 0.0F, 0.0F);
                          GL11.glRotatef(90.0F, 0.0F, 0.0F, 1.0F);
                          GL11.glEnable(GL11.GL_BLEND);
                          GL11.glDisable(GL11.GL_ALPHA_TEST);
                          GL11.glDisable(GL11.GL_CULL_FACE);
                          GL11.glDepthMask(false);
                          OpenGlHelper.glBlendFunc(770, 771, 1, 0);
                          byte b0 = 8;
                  
                          for (int k = 0; k < b0 * b0; ++k)
                          {
                              GL11.glPushMatrix();
                              float f1 = ((float)(k % b0) / (float)b0 - 0.5F) / 64.0F;
                              float f2 = ((float)(k / b0) / (float)b0 - 0.5F) / 64.0F;
                              float f3 = 0.0F;
                              GL11.glTranslatef(f1, f2, f3);
                              GL11.glRotatef(MathHelper.sin(((float)this.panoramaTimer + p_73970_3_) / 400.0F) * 25.0F + 20.0F, 1.0F, 0.0F, 0.0F);
                              GL11.glRotatef(-((float)this.panoramaTimer + p_73970_3_) * 0.1F, 0.0F, 1.0F, 0.0F);
                  
                              for (int l = 0; l < 6; ++l)
                              {
                                  GL11.glPushMatrix();
                  
                                  if (l == 1)
                                  {
                                      GL11.glRotatef(90.0F, 0.0F, 1.0F, 0.0F);
                                  }
                  
                                  if (l == 2)
                                  {
                                      GL11.glRotatef(180.0F, 0.0F, 1.0F, 0.0F);
                                  }
                  
                                  if (l == 3)
                                  {
                                      GL11.glRotatef(-90.0F, 0.0F, 1.0F, 0.0F);
                                  }
                  
                                  if (l == 4)
                                  {
                                      GL11.glRotatef(90.0F, 1.0F, 0.0F, 0.0F);
                                  }
                  
                                  if (l == 5)
                                  {
                                      GL11.glRotatef(-90.0F, 1.0F, 0.0F, 0.0F);
                                  }
                  
                                  this.mc.getTextureManager().bindTexture(titlePanoramaPaths[l]);
                                  tessellator.startDrawingQuads();
                                  tessellator.setColorRGBA_I(16777215, 255 / (k + 1));
                                  float f4 = 0.0F;
                                  tessellator.addVertexWithUV(-1.0D, -1.0D, 1.0D, (double)(0.0F + f4), (double)(0.0F + f4));
                                  tessellator.addVertexWithUV(1.0D, -1.0D, 1.0D, (double)(1.0F - f4), (double)(0.0F + f4));
                                  tessellator.addVertexWithUV(1.0D, 1.0D, 1.0D, (double)(1.0F - f4), (double)(1.0F - f4));
                                  tessellator.addVertexWithUV(-1.0D, 1.0D, 1.0D, (double)(0.0F + f4), (double)(1.0F - f4));
                                  tessellator.draw();
                                  GL11.glPopMatrix();
                              }
                  
                              GL11.glPopMatrix();
                              GL11.glColorMask(true, true, true, false);
                          }
                  
                          tessellator.setTranslation(0.0D, 0.0D, 0.0D);
                          GL11.glColorMask(true, true, true, true);
                          GL11.glMatrixMode(GL11.GL_PROJECTION);
                          GL11.glPopMatrix();
                          GL11.glMatrixMode(GL11.GL_MODELVIEW);
                          GL11.glPopMatrix();
                          GL11.glDepthMask(true);
                          GL11.glEnable(GL11.GL_CULL_FACE);
                          GL11.glEnable(GL11.GL_DEPTH_TEST);
                      }
                  
                      /**
                       * Rotate and blurs the skybox view in the main menu
                       */
                      private void rotateAndBlurSkybox(float p_73968_1_)
                      {
                          this.mc.getTextureManager().bindTexture(this.field_110351_G);
                          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);
                          GL11.glCopyTexSubImage2D(GL11.GL_TEXTURE_2D, 0, 0, 0, 0, 0, 256, 256);
                          GL11.glEnable(GL11.GL_BLEND);
                          OpenGlHelper.glBlendFunc(770, 771, 1, 0);
                          GL11.glColorMask(true, true, true, false);
                          Tessellator tessellator = Tessellator.instance;
                          tessellator.startDrawingQuads();
                          GL11.glDisable(GL11.GL_ALPHA_TEST);
                          byte b0 = 3;
                  
                          for (int i = 0; i < b0; ++i)
                          {
                              tessellator.setColorRGBA_F(1.0F, 1.0F, 1.0F, 1.0F / (float)(i + 1));
                              int j = this.width;
                              int k = this.height;
                              float f1 = (float)(i - b0 / 2) / 256.0F;
                              tessellator.addVertexWithUV((double)j, (double)k, (double)this.zLevel, (double)(0.0F + f1), 1.0D);
                              tessellator.addVertexWithUV((double)j, 0.0D, (double)this.zLevel, (double)(1.0F + f1), 1.0D);
                              tessellator.addVertexWithUV(0.0D, 0.0D, (double)this.zLevel, (double)(1.0F + f1), 0.0D);
                              tessellator.addVertexWithUV(0.0D, (double)k, (double)this.zLevel, (double)(0.0F + f1), 0.0D);
                          }
                  
                          tessellator.draw();
                          GL11.glEnable(GL11.GL_ALPHA_TEST);
                          GL11.glColorMask(true, true, true, true);
                      }
                  
                      /**
                       * Renders the skybox in the main menu
                       */
                      private void renderSkybox(int p_73971_1_, int p_73971_2_, float p_73971_3_)
                      {
                          this.mc.getFramebuffer().unbindFramebuffer();
                          GL11.glViewport(0, 0, 256, 256);
                          this.drawPanorama(p_73971_1_, p_73971_2_, p_73971_3_);
                          this.rotateAndBlurSkybox(p_73971_3_);
                          this.rotateAndBlurSkybox(p_73971_3_);
                          this.rotateAndBlurSkybox(p_73971_3_);
                          this.rotateAndBlurSkybox(p_73971_3_);
                          this.rotateAndBlurSkybox(p_73971_3_);
                          this.rotateAndBlurSkybox(p_73971_3_);
                          this.rotateAndBlurSkybox(p_73971_3_);
                          this.mc.getFramebuffer().bindFramebuffer(true);
                          GL11.glViewport(0, 0, this.mc.displayWidth, this.mc.displayHeight);
                          Tessellator tessellator = Tessellator.instance;
                          tessellator.startDrawingQuads();
                          float f1 = this.width > this.height ? 120.0F / (float)this.width : 120.0F / (float)this.height;
                          float f2 = (float)this.height * f1 / 256.0F;
                          float f3 = (float)this.width * f1 / 256.0F;
                          tessellator.setColorRGBA_F(1.0F, 1.0F, 1.0F, 1.0F);
                          int k = this.width;
                          int l = this.height;
                          tessellator.addVertexWithUV(0.0D, (double)l, (double)this.zLevel, (double)(0.5F - f2), (double)(0.5F + f3));
                          tessellator.addVertexWithUV((double)k, (double)l, (double)this.zLevel, (double)(0.5F - f2), (double)(0.5F - f3));
                          tessellator.addVertexWithUV((double)k, 0.0D, (double)this.zLevel, (double)(0.5F + f2), (double)(0.5F - f3));
                          tessellator.addVertexWithUV(0.0D, 0.0D, (double)this.zLevel, (double)(0.5F + f2), (double)(0.5F + f3));
                          tessellator.draw();
                      }
                  
                      /**
                       * Draws the screen and all the components in it.
                       */
                      public void drawScreen(int p_73863_1_, int p_73863_2_, float p_73863_3_)
                      {
                          GL11.glDisable(GL11.GL_ALPHA_TEST);
                          this.renderSkybox(p_73863_1_, p_73863_2_, p_73863_3_);
                          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();
                          String s = "Minecraft 1.7.10";
                  
                          if (this.mc.isDemo())
                          {
                              s = s + " Demo";
                          }
                  
                          List <string>brandings = Lists.reverse(FMLCommonHandler.instance().getBrandings(true));
                          for (int i = 0; i < brandings.size(); i++)
                          {
                              String brd = brandings.get(i);
                              if (!Strings.isNullOrEmpty(brd))
                              {
                                  this.drawString(this.fontRendererObj, brd, 2, this.height - ( 10 + i * (this.fontRendererObj.FONT_HEIGHT + 1)), 16777215);
                              }
                          }
                  
                          String s1 = "Copyright Mojang AB. Do not distribute!";
                          this.drawString(this.fontRendererObj, s1, this.width - this.fontRendererObj.getStringWidth(s1) - 2, this.height - 10, -1);
                  
                          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(p_73863_1_, p_73863_2_, p_73863_3_);
                      }
                  
                      /**
                       * Called when the mouse is clicked.
                       */
                      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);
                              }
                          }
                      }
                  }
                  ```</string>

                  Voila ma signature

                  1 Reply Last reply Reply Quote 0
                  • robin4002
                    robin4002 Moddeurs confirmés Rédacteurs Administrateurs last edited by

                    Car tu modifies les menu via un event et que ta classe n’est surement pas enregistré comme classe d’event.

                    Je ne sais pas du tout pourquoi tu passes par les event, tu pourrais directement modifier la classe.

                    1 Reply Last reply Reply Quote 0
                    • leo01418
                      leo01418 last edited by

                      Dans ce cas je ne vois pas comment faire

                      Voila ma signature

                      1 Reply Last reply Reply Quote 0
                      • AymericRed
                        AymericRed last edited by

                        Tu n’as pas besoin devents, tu dois modifier les fonctions vanilla initGui() (ou les boutons sont ajoutés) et actionPerformed() du gui que tu as copié.

                        Si je vous ai aidé, n'oubliez pas d’être heureux, j'aiderai encore +

                        AymericRed, moddeur expérimenté qui aide sur ce forum et qui peut accepter de faire un mod Forge rémunéré de temps en temps.

                        Mes tutos : Table de craft, plugin NEI, plugin JEI, modifier l'overlay
                        Je suis un membre apprécié et joueur, j'ai déjà obtenu 6 points de réputation.

                        1 Reply Last reply Reply Quote 0
                        • leo01418
                          leo01418 last edited by

                          Je ne comprend pas comment faire j’ai éssayé de rajouté des chose mais sans succès  😞

                          Voila ma signature

                          1 Reply Last reply Reply Quote 0
                          • leo01418
                            leo01418 last edited by

                            J’ai réussi à faire affiché les boutons  😄
                            Mais que celui de ts marche je pense qu’il faut encore modifié le initGui mais la je voie pas comment faire du tout

                            Merci de vos réponses  😉

                            Voila ma signature

                            1 Reply Last reply Reply Quote 0
                            • Deleted
                              Deleted last edited by

                              Renvoies tes classes stp, j’ai pas tout suivi depuis ton premier post :x

                              1 Reply Last reply Reply Quote 0
                              • leo01418
                                leo01418 last edited by

                                package ed.enderdeathMenu.mod;
                                
                                import java.awt.Desktop;
                                import java.io.BufferedReader;
                                import java.io.IOException;
                                import java.io.InputStreamReader;
                                import java.net.URI;
                                import java.net.URISyntaxException;
                                import java.util.ArrayList;
                                import java.util.Calendar;
                                import java.util.Date;
                                import java.util.List;
                                import java.util.Random;
                                
                                import net.minecraft.client.Minecraft;
                                import net.minecraft.client.gui.FontRenderer;
                                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.GuiMainMenu;
                                import net.minecraft.client.gui.GuiMultiplayer;
                                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.multiplayer.GuiConnecting;
                                import net.minecraft.client.multiplayer.ServerData;
                                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.realms.RealmsBridge;
                                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 net.minecraftforge.client.event.GuiScreenEvent.ActionPerformedEvent;
                                import net.minecraftforge.client.event.GuiScreenEvent.InitGuiEvent;
                                import net.minecraftforge.client.ForgeHooksClient;
                                import net.minecraftforge.client.event.RenderGameOverlayEvent;
                                import net.minecraftforge.common.MinecraftForge;
                                
                                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 org.lwjgl.util.glu.Project;
                                
                                import com.google.common.base.Strings;
                                import com.google.common.collect.Lists;
                                
                                import cpw.mods.fml.client.FMLClientHandler;
                                import cpw.mods.fml.client.GuiModList;
                                import cpw.mods.fml.common.FMLCommonHandler;
                                import cpw.mods.fml.common.Mod.EventHandler;
                                import cpw.mods.fml.common.ObfuscationReflectionHelper;
                                import cpw.mods.fml.common.eventhandler.SubscribeEvent;
                                import cpw.mods.fml.relauncher.Side;
                                import cpw.mods.fml.relauncher.SideOnly;
                                
                                @SideOnly(Side.CLIENT)
                                public class GuiCustomMenu extends GuiMainMenu implements GuiYesNoCallback
                                {
                                
                                private static final Logger logger = LogManager.getLogger();
                                    /** The RNG used by the Main Menu Screen. */
                                    private static final Random rand = new Random();
                                    /** Counts the number of screen updates. */
                                    private float updateCounter;
                                    /** The splash message. */
                                    private String splashText;
                                    private GuiButton buttonResetDemo;
                                    /** Timer used to rotate the panorama, increases every tick. */
                                    private int panoramaTimer;
                                    /** Texture allocated for the current viewport of the main menu's panorama background. */
                                    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("texts/splashes.txt");
                                    private static final ResourceLocation minecraftTitleTextures = new ResourceLocation("textures/gui/title/minecraft.png");
                                    /** An array of all the paths to the panorama pictures. */
                                    private static final ResourceLocation[] titlePanoramaPaths = new ResourceLocation[] {new ResourceLocation("enderdeath","textures/gui/title/background/panorama_0.png"), new ResourceLocation("enderdeath","textures/gui/title/background/panorama_1.png"), new ResourceLocation("enderdeath","textures/gui/title/background/panorama_2.png"), new ResourceLocation("textures/gui/title/background/panorama_3.png"), new ResourceLocation("textures/gui/title/background/panorama_4.png"), new ResourceLocation("textures/gui/title/background/panorama_5.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";
                                
                                    public GuiCustomMenu()
                                    {
                                        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";
                                        }
                                    }
                                
                                    /**
                                     * Called from the main game loop to update the screen.
                                     */
                                    public void updateScreen()
                                    {
                                        ++this.panoramaTimer;
                                    }
                                
                                    /**
                                     * Returns true if this GUI should pause the game when it is displayed in single-player
                                     */
                                    public boolean doesGuiPauseGame()
                                    {
                                        return false;
                                    }
                                
                                    /**
                                     * Fired when a key is typed. This is the equivalent of KeyListener.keyTyped(KeyEvent e).
                                     */
                                    protected void keyTyped(char p_73869_1_, int p_73869_2_) {}
                                
                                    /**
                                     * Adds the buttons (and other controls) to the screen in question.
                                     */
                                    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!";
                                        }
                                
                                        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;
                                        }
                                    }
                                
                                    /**
                                     * Adds Singleplayer and Multiplayer buttons on Main Menu for players who have bought the game.
                                     */
                                    private void addSingleplayerMultiplayerButtons(int p_73969_1_, int p_73969_2_)
                                    {
                                        this.buttonList.add(new GuiButton(1, this.width / 2 - 100, p_73969_1_, I18n.format("menu.singleplayer", new Object[0])));
                                        this.buttonList.add(new GuiButton(2, this.width / 2 - 100, p_73969_1_ + p_73969_2_ * 1, I18n.format("menu.multiplayer", new Object[0])));
                                        GuiButton realmsButton = new GuiButton(14, this.width / 2 - 100, p_73969_1_ + p_73969_2_ * 2, I18n.format("menu.online", new Object[0]));
                                        GuiButton fmlModButton = new GuiButton(6, this.width / 2 - 100, p_73969_1_ + p_73969_2_ * 2, "Mods");
                                        fmlModButton.xPosition = this.width / 2 + 2;
                                        realmsButton.width = 98;
                                        fmlModButton.width = 98;
                                        this.buttonList.add(realmsButton);
                                        this.buttonList.add(fmlModButton);
                                    }
                                
                                    /**
                                     * Adds Demo buttons on Main Menu for players who are playing Demo.
                                     */
                                    private void addDemoButtons(int p_73972_1_, int p_73972_2_)
                                    {
                                        this.buttonList.add(new GuiButton(11, this.width / 2 - 100, p_73972_1_, I18n.format("menu.playdemo", new Object[0])));
                                        this.buttonList.add(this.buttonResetDemo = new GuiButton(12, this.width / 2 - 100, p_73972_1_ + p_73972_2_ * 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 p_146284_1_)
                                    {
                                        if (p_146284_1_.id == 0)
                                        {
                                            this.mc.displayGuiScreen(new GuiOptions(this, this.mc.gameSettings));
                                        }
                                
                                        if (p_146284_1_.id == 5)
                                        {
                                            this.mc.displayGuiScreen(new GuiLanguage(this, this.mc.gameSettings, this.mc.getLanguageManager()));
                                        }
                                
                                        if (p_146284_1_.id == 1)
                                        {
                                            this.mc.displayGuiScreen(new GuiSelectWorld(this));
                                        }
                                
                                        if (p_146284_1_.id == 2)
                                        {
                                            this.mc.displayGuiScreen(new GuiMultiplayer(this));
                                        }
                                
                                        if (p_146284_1_.id == 14)
                                        {
                                            this.func_140005_i();
                                        }
                                
                                        if (p_146284_1_.id == 4)
                                        {
                                            this.mc.shutdown();
                                        }
                                
                                        if (p_146284_1_.id == 6)
                                        {
                                            this.mc.displayGuiScreen(new GuiModList(this));
                                        }
                                
                                        if (p_146284_1_.id == 11)
                                        {
                                            this.mc.launchIntegratedServer("Demo_World", "Demo_World", DemoWorldServer.demoWorldSettings);
                                        }
                                
                                        if (p_146284_1_.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);
                                            }
                                        }
                                    }
                                
                                    private void func_140005_i()
                                    {
                                        RealmsBridge realmsbridge = new RealmsBridge();
                                        realmsbridge.switchToRealms(this);
                                    }
                                
                                    public void confirmClicked(boolean p_73878_1_, int p_73878_2_)
                                    {
                                        if (p_73878_1_ && p_73878_2_ == 12)
                                        {
                                            ISaveFormat isaveformat = this.mc.getSaveLoader();
                                            isaveformat.flushCache();
                                            isaveformat.deleteWorldDirectory("Demo_World");
                                            this.mc.displayGuiScreen(this);
                                        }
                                        else if (p_73878_2_ == 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);
                                        }
                                    }
                                
                                    /**
                                     * Draws the main menu panorama
                                     */
                                    private void drawPanorama(int p_73970_1_, int p_73970_2_, float p_73970_3_)
                                    {
                                        Tessellator tessellator = Tessellator.instance;
                                        GL11.glMatrixMode(GL11.GL_PROJECTION);
                                        GL11.glPushMatrix();
                                        GL11.glLoadIdentity();
                                        Project.gluPerspective(120.0F, 1.0F, 0.05F, 10.0F);
                                        GL11.glMatrixMode(GL11.GL_MODELVIEW);
                                        GL11.glPushMatrix();
                                        GL11.glLoadIdentity();
                                        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
                                        GL11.glRotatef(180.0F, 1.0F, 0.0F, 0.0F);
                                        GL11.glRotatef(90.0F, 0.0F, 0.0F, 1.0F);
                                        GL11.glEnable(GL11.GL_BLEND);
                                        GL11.glDisable(GL11.GL_ALPHA_TEST);
                                        GL11.glDisable(GL11.GL_CULL_FACE);
                                        GL11.glDepthMask(false);
                                        OpenGlHelper.glBlendFunc(770, 771, 1, 0);
                                        byte b0 = 8;
                                
                                        for (int k = 0; k < b0 * b0; ++k)
                                        {
                                            GL11.glPushMatrix();
                                            float f1 = ((float)(k % b0) / (float)b0 - 0.5F) / 64.0F;
                                            float f2 = ((float)(k / b0) / (float)b0 - 0.5F) / 64.0F;
                                            float f3 = 0.0F;
                                            GL11.glTranslatef(f1, f2, f3);
                                            GL11.glRotatef(MathHelper.sin(((float)this.panoramaTimer + p_73970_3_) / 400.0F) * 25.0F + 20.0F, 1.0F, 0.0F, 0.0F);
                                            GL11.glRotatef(-((float)this.panoramaTimer + p_73970_3_) * 0.1F, 0.0F, 1.0F, 0.0F);
                                
                                            for (int l = 0; l < 6; ++l)
                                            {
                                                GL11.glPushMatrix();
                                
                                                if (l == 1)
                                                {
                                                    GL11.glRotatef(90.0F, 0.0F, 1.0F, 0.0F);
                                                }
                                
                                                if (l == 2)
                                                {
                                                    GL11.glRotatef(180.0F, 0.0F, 1.0F, 0.0F);
                                                }
                                
                                                if (l == 3)
                                                {
                                                    GL11.glRotatef(-90.0F, 0.0F, 1.0F, 0.0F);
                                                }
                                
                                                if (l == 4)
                                                {
                                                    GL11.glRotatef(90.0F, 1.0F, 0.0F, 0.0F);
                                                }
                                
                                                if (l == 5)
                                                {
                                                    GL11.glRotatef(-90.0F, 1.0F, 0.0F, 0.0F);
                                                }
                                
                                                this.mc.getTextureManager().bindTexture(titlePanoramaPaths[l]);
                                                tessellator.startDrawingQuads();
                                                tessellator.setColorRGBA_I(16777215, 255 / (k + 1));
                                                float f4 = 0.0F;
                                                tessellator.addVertexWithUV(-1.0D, -1.0D, 1.0D, (double)(0.0F + f4), (double)(0.0F + f4));
                                                tessellator.addVertexWithUV(1.0D, -1.0D, 1.0D, (double)(1.0F - f4), (double)(0.0F + f4));
                                                tessellator.addVertexWithUV(1.0D, 1.0D, 1.0D, (double)(1.0F - f4), (double)(1.0F - f4));
                                                tessellator.addVertexWithUV(-1.0D, 1.0D, 1.0D, (double)(0.0F + f4), (double)(1.0F - f4));
                                                tessellator.draw();
                                                GL11.glPopMatrix();
                                            }
                                
                                            GL11.glPopMatrix();
                                            GL11.glColorMask(true, true, true, false);
                                        }
                                
                                        tessellator.setTranslation(0.0D, 0.0D, 0.0D);
                                        GL11.glColorMask(true, true, true, true);
                                        GL11.glMatrixMode(GL11.GL_PROJECTION);
                                        GL11.glPopMatrix();
                                        GL11.glMatrixMode(GL11.GL_MODELVIEW);
                                        GL11.glPopMatrix();
                                        GL11.glDepthMask(true);
                                        GL11.glEnable(GL11.GL_CULL_FACE);
                                        GL11.glEnable(GL11.GL_DEPTH_TEST);
                                    }
                                
                                    /**
                                     * Rotate and blurs the skybox view in the main menu
                                     */
                                    private void rotateAndBlurSkybox(float p_73968_1_)
                                    {
                                        this.mc.getTextureManager().bindTexture(this.field_110351_G);
                                        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);
                                        GL11.glCopyTexSubImage2D(GL11.GL_TEXTURE_2D, 0, 0, 0, 0, 0, 256, 256);
                                        GL11.glEnable(GL11.GL_BLEND);
                                        OpenGlHelper.glBlendFunc(770, 771, 1, 0);
                                        GL11.glColorMask(true, true, true, false);
                                        Tessellator tessellator = Tessellator.instance;
                                        tessellator.startDrawingQuads();
                                        GL11.glDisable(GL11.GL_ALPHA_TEST);
                                        byte b0 = 3;
                                
                                        for (int i = 0; i < b0; ++i)
                                        {
                                            tessellator.setColorRGBA_F(1.0F, 1.0F, 1.0F, 1.0F / (float)(i + 1));
                                            int j = this.width;
                                            int k = this.height;
                                            float f1 = (float)(i - b0 / 2) / 256.0F;
                                            tessellator.addVertexWithUV((double)j, (double)k, (double)this.zLevel, (double)(0.0F + f1), 1.0D);
                                            tessellator.addVertexWithUV((double)j, 0.0D, (double)this.zLevel, (double)(1.0F + f1), 1.0D);
                                            tessellator.addVertexWithUV(0.0D, 0.0D, (double)this.zLevel, (double)(1.0F + f1), 0.0D);
                                            tessellator.addVertexWithUV(0.0D, (double)k, (double)this.zLevel, (double)(0.0F + f1), 0.0D);
                                        }
                                
                                        tessellator.draw();
                                        GL11.glEnable(GL11.GL_ALPHA_TEST);
                                        GL11.glColorMask(true, true, true, true);
                                    }
                                
                                    /**
                                     * Renders the skybox in the main menu
                                     */
                                    private void renderSkybox(int p_73971_1_, int p_73971_2_, float p_73971_3_)
                                    {
                                        this.mc.getFramebuffer().unbindFramebuffer();
                                        GL11.glViewport(0, 0, 256, 256);
                                        this.drawPanorama(p_73971_1_, p_73971_2_, p_73971_3_);
                                        this.rotateAndBlurSkybox(p_73971_3_);
                                        this.rotateAndBlurSkybox(p_73971_3_);
                                        this.rotateAndBlurSkybox(p_73971_3_);
                                        this.rotateAndBlurSkybox(p_73971_3_);
                                        this.rotateAndBlurSkybox(p_73971_3_);
                                        this.rotateAndBlurSkybox(p_73971_3_);
                                        this.rotateAndBlurSkybox(p_73971_3_);
                                        this.mc.getFramebuffer().bindFramebuffer(true);
                                        GL11.glViewport(0, 0, this.mc.displayWidth, this.mc.displayHeight);
                                        Tessellator tessellator = Tessellator.instance;
                                        tessellator.startDrawingQuads();
                                        float f1 = this.width > this.height ? 120.0F / (float)this.width : 120.0F / (float)this.height;
                                        float f2 = (float)this.height * f1 / 256.0F;
                                        float f3 = (float)this.width * f1 / 256.0F;
                                        tessellator.setColorRGBA_F(1.0F, 1.0F, 1.0F, 1.0F);
                                        int k = this.width;
                                        int l = this.height;
                                        tessellator.addVertexWithUV(0.0D, (double)l, (double)this.zLevel, (double)(0.5F - f2), (double)(0.5F + f3));
                                        tessellator.addVertexWithUV((double)k, (double)l, (double)this.zLevel, (double)(0.5F - f2), (double)(0.5F - f3));
                                        tessellator.addVertexWithUV((double)k, 0.0D, (double)this.zLevel, (double)(0.5F + f2), (double)(0.5F - f3));
                                        tessellator.addVertexWithUV(0.0D, 0.0D, (double)this.zLevel, (double)(0.5F + f2), (double)(0.5F + f3));
                                        tessellator.draw();
                                    }
                                
                                    /**
                                     * Draws the screen and all the components in it.
                                     */
                                    public void drawScreen(int p_73863_1_, int p_73863_2_, float p_73863_3_)
                                    {
                                        GL11.glDisable(GL11.GL_ALPHA_TEST);
                                        this.renderSkybox(p_73863_1_, p_73863_2_, p_73863_3_);
                                        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();
                                        String s = "Minecraft 1.7.10";
                                
                                        if (this.mc.isDemo())
                                        {
                                            s = s + " Demo";
                                        }
                                
                                        List <string>brandings = Lists.reverse(FMLCommonHandler.instance().getBrandings(true));
                                        for (int i = 0; i < brandings.size(); i++)
                                        {
                                            String brd = brandings.get(i);
                                            if (!Strings.isNullOrEmpty(brd))
                                            {
                                                this.drawString(this.fontRendererObj, brd, 2, this.height - ( 10 + i * (this.fontRendererObj.FONT_HEIGHT + 1)), 16777215);
                                            }
                                        }
                                        ForgeHooksClient.renderMainMenu(this, fontRendererObj, width, height);
                                        String s1 = "Copyright Mojang AB. Do not distribute!";
                                        this.drawString(this.fontRendererObj, s1, this.width - this.fontRendererObj.getStringWidth(s1) - 2, this.height - 10, -1);
                                
                                        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(p_73863_1_, p_73863_2_, p_73863_3_);
                                    }
                                
                                    /**
                                     * Called when the mouse is clicked.
                                     */
                                    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);
                                            }
                                        }
                                    }
                                
                                    @SubscribeEvent
                                  public void onInitGuiEven(InitGuiEvent.Post event)
                                     {
                                  if (event.gui instanceof GuiMainMenu) { // On regarde si le gui est bien le menu principal
                                  for (Object b : event.buttonList) { // On parcourt la liste des boutons
                                  if (((GuiButton) b).id == 2) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                                  ((GuiButton) b).visible = false; // On ne l'affiche plus
                                  }
                                  if (((GuiButton) b).id == 1) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                                  ((GuiButton) b).visible = false; // On ne l'affiche plus
                                  }
                                  if (((GuiButton) b).id == 6) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                                  ((GuiButton) b).visible = false; // On ne l'affiche plus
                                  }
                                  if (((GuiButton) b).id == 5) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                                  ((GuiButton) b).visible = false; // On ne l'affiche plus
                                  }
                                  if (((GuiButton) b).id == 0) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                                  ((GuiButton) b).visible = false; // On ne l'affiche plus
                                  }
                                
                                  if (((GuiButton) b).id == 4) { // Si c'est le bouton "Minecraft Realms" (qui a l'ID 14)
                                  ((GuiButton) b).visible = false; // On ne l'affiche plus
                                  }
                                
                                  }
                                
                                  }
                                  }
                                
                                    @SubscribeEvent
                                public void onInitGuiEvent(InitGuiEvent.Post event)
                                    {
                                if (event.gui instanceof GuiMainMenu) { 
                                for (Object b : event.buttonList) {
                                if (((GuiButton) b).id == 14) {
                                ((GuiButton) b).visible = false; 
                                }
                                }
                                int i = event.gui.height / 6 + 30; 
                                event.buttonList.add(new GuiButton(60, event.gui.width / 2 - 100, i + 24 * 2, 175, 20, "Rejoindre le serveur") { 
                                
                                });
                                int ia = event.gui.height /2 + 15;
                                event.buttonList.add(new GuiButton(32, event.gui.width /  2 - 55, ia + 24 * 2, 100, 20, "Site internet") { 
                                
                                });
                                int iq = event.gui.height / 2 + 15; 
                                event.buttonList.add(new GuiButton(33, event.gui.width / 1 - 154, iq + 24 * 2, 50, 20, "Youtube") { 
                                
                                });
                                int iqs = event.gui.height / 2 + 15; 
                                event.buttonList.add(new GuiButton(34, event.gui.width / 3 - 45, iqs + 24 * 2, 50, 20, "Twitter") { 
                                
                                });
                                int ib = event.gui.height / 3 + 25;
                                event.buttonList.add(new GuiButton(30, event.gui.width / 2 - 80, ib + 24 * 2, 150, 20,( "Teamspeak")) { 
                                @Override
                                public void mouseReleased(int x, int y) { 
                                if (Desktop.isDesktopSupported()) { 
                                try {
                                Desktop.getDesktop().browse(new URI("ts3server://ts.enderdeath.fr?port=9987"));
                                } catch (Exception e) {
                                
                                }
                                }
                                }
                                
                                });
                                
                                }
                                }
                                
                                    @SubscribeEvent
                                  public void onActionPerformedA(ActionPerformedEvent.Pre event) {
                                  if (event.gui instanceof GuiOptions && event.button.id == 104) event.setCanceled(true); 
                                
                                    }
                                
                                @SubscribeEvent
                                public void onActionPerformed(ActionPerformedEvent.Pre event)
                                {
                                if (event.gui instanceof GuiMainMenu)
                                {
                                    if(event.button.id == 32)
                                    {
                                         try {
                                Desktop.getDesktop().browse(new URI("http://www.minecraftforgefrance.fr/"));
                                         }
                                 catch(Throwable throwable)
                                       {
                                           logger.error("Couldn\'t open link", throwable);
                                       }
                                    }
                                    else if(event.button.id == 60)
                                    {
                                    FMLClientHandler.instance().connectToServerAtStartup("62.210.62.194",10048);
                                       ;
                                    }
                                }
                                
                                }
                                }
                                
                                

                                tien ^^</string>

                                Voila ma signature

                                1 Reply Last reply Reply Quote 0
                                • Deleted
                                  Deleted last edited by

                                  Vire tous les events à la fin de ta classe, ils ne te servent à rien. Et puis clean un peu la classe de ton menu, exemple, tu n’as pas besoin du Calendar (sert pour texte en jaune),. Sa sera déjà un peu plus lisible x)

                                  Après dans ta méthode onInitGuiEvent, tous les boutons que tu rajoutes, vu que je t’ai demandé de virer tous tes events, tous ces boutons rajoutés, remets les dans la fonction initGui de ton menu.
                                  Pour le reste, je verrai ça demain 😃

                                  1 Reply Last reply Reply Quote 1
                                  • leo01418
                                    leo01418 last edited by

                                    Je sais pas pourquoi mais sa marche  🙂

                                    Merci beaucoup

                                    Voila ma signature

                                    1 Reply Last reply Reply Quote 0
                                    • Deleted
                                      Deleted last edited by

                                      Balise résolue 🙂 ?

                                      1 Reply Last reply Reply Quote 0
                                      • leo01418
                                        leo01418 last edited by

                                        Oui Merci beaucoup  🙂

                                        Voila ma signature

                                        1 Reply Last reply Reply Quote 0
                                        • 1 / 1
                                        • First post
                                          Last post
                                        Design by Woryk
                                        Contact / Mentions Légales

                                        MINECRAFT FORGE FRANCE © 2018

                                        Powered by NodeBB