MFF

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

    Erreur sur un bouton de connexion directe

    Planifier Épinglé Verrouillé Déplacé Résolu Anciennes versions
    1.6.4
    49 Messages 6 Publieurs 10.2k Vues 1 Watching
    Charger plus de messages
    • Du plus ancien au plus récent
    • Du plus récent au plus ancien
    • Les plus votés
    Répondre
    • Répondre à l'aide d'un nouveau sujet
    Se connecter pour répondre
    Ce sujet a été supprimé. Seuls les utilisateurs avec les droits d'administration peuvent le voir.
    • robin4002R Hors-ligne
      robin4002 Moddeurs confirmés Rédacteurs Administrateurs
      dernière édition par

      Je vois pas ce qui pourrait causer ça alors, c’est vraiment étrange o_O

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

        Oui, je trouve aussi, sachant que les autres serveur présent sur la machine, bah… j’arrive à m’y connecter !

        Mais le pire c’est que même en local avec le même mcpc, sans, plugins, sans mods… je crash !

        Si je t'ai filé un coup de main n'oublie pas le + / -
        Par contre évite les demandes d'aides en MP, tu sera sympa'

        La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

        Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

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

          Problème d’encodage de la workspace ?

          1 réponse Dernière réponse Répondre Citer 0
          • RedRelayR Hors-ligne
            RedRelay Moddeurs confirmés
            dernière édition par

            Pourrait-on avoir tout le code de ta classe ?
            Parce que c’est évident qu’avec la ligne que tu nous donnes on ne peut rien trouver 😛
            Tu as un paramètre qui n’est pas initialisé et qui passe dans la méthode encode() de la classe URL.

            –------------------------------------------------------------------------------------
            Si tu trouves mon intervention pertinente, n'hésite pas a m…

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

              :::

              package net.minecraft.client.gui;
              
              import java.awt.Desktop;
              import java.awt.Menu;
              import java.io.BufferedReader;
              import java.io.InputStreamReader;
              import java.net.URL;
              import java.util.Calendar;
              import java.util.Date;
              import java.util.Random;
              import java.util.logging.Level;
              import java.util.logging.Logger;
              
              import net.minecraft.client.Minecraft;
              import net.minecraft.client.multiplayer.GuiConnecting;
              import net.minecraft.client.renderer.Tessellator;
              import net.minecraft.client.renderer.texture.DynamicTexture;
              import net.minecraft.client.resources.I18n;
              import net.minecraft.util.EnumChatFormatting;
              import net.minecraft.util.MathHelper;
              import net.minecraft.util.ResourceLocation;
              import net.minecraft.viruz.Accentuation;
              import net.minecraft.viruz.GuiButtonSkype;
              import net.minecraft.viruz.GuiCredits;
              
              import org.lwjgl.opengl.GL11;
              import org.lwjgl.util.glu.Project;
              
              import cpw.mods.fml.relauncher.Side;
              import cpw.mods.fml.relauncher.SideOnly;
              
              @SideOnly(Side.CLIENT)
              public class GuiMainMenu extends GuiScreen
              {
              /** The RNG used by the Main Menu Screen. */
              private static final Random rand = new Random();
              
              /** Counts the number of screen updates. */
              private float updateCounter;
              
              /** 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 boolean field_96141_q = true;
              private static boolean field_96140_r;
              private static boolean field_96139_s;
              private final Object field_104025_t = new Object();
              private String field_92025_p;
              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")};
              
              private ResourceLocation field_110351_G;
              
              private String text = readFile("http://viruz.fr/ViruZ/News/ViruZ.txt");
              private int textPosition;
              
              private static String readFile(String url)
              {
              String text = "";
              try
              {
              URL location = new URL(url);
              BufferedReader in = new BufferedReader(new InputStreamReader(location.openStream()));
              text = in.readLine();
              }
              catch (Exception e)
              {
              System.out.println(e);
              }
              return text;
              }
              
              public GuiMainMenu()
              {
              this.updateCounter = rand.nextFloat();
              }
              
              /**
              * Called from the main game loop to update the screen.
              */
              public void updateScreen()
              {
              ++this.panoramaTimer;
              
              if (textPosition < 0 - mc.fontRenderer.getStringWidth(text))
              {
              textPosition = width / 2 + 220;
              }
              
              textPosition -= 2;
              }
              
              /**
              * 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 par1, int par2) {}
              
              /**
              * 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.text = "Bon anniversaire, ez !";
              }
              else if (calendar.get(2) + 1 == 6 && calendar.get(5) == 1)
              {
              this.text = "Bon anniversaire, Notch !";
              }
              else if (calendar.get(2) + 1 == 12 && calendar.get(5) == 24)
              {
              this.text = "Joyeux No" + Accentuation.E_Tremat +"l !";
              }
              else if (calendar.get(2) + 1 == 1 && calendar.get(5) == 1)
              {
              this.text = "Bonne ann" + Accentuation.E_Aigu + "e !";
              }
              else if (calendar.get(2) + 1 == 10 && calendar.get(5) == 31)
              {
              this.text = EnumChatFormatting.DARK_RED + "Viru" + EnumChatFormatting.DARK_GREEN + "Z " + EnumChatFormatting.WHITE + Accentuation.A_Grave + " 1 an !";
              }
              else if (calendar.get(2) + 1 == 4 && calendar.get(5) == 5)
              {
              this.text = "Bon anniversaire, ZeAmateis !";
              }
              else if (calendar.get(2) + 1 == 9 && calendar.get(5) == 3)
              {
              this.text = "Bon anniversaire, Tiarnan !";
              }
              
              boolean flag = true;
              int i = this.height / 4 + 48;
              
              this.addViruZButtons(i, 24);
              
              }
              
              private void addViruZButtons(int par1, int par2)
              {
              int i = this.height / 4 + 48;
              
              this.buttonList.add(new GuiButton(0, this.width / 2 - 100, i + 72 + 12, 98, 20, I18n.getString("menu.options")));
              this.buttonList.add(new GuiButton(10, this.width / 2 - 100, par1, I18n.getString("Serveur Mapping ViruZ")));
              
              this.buttonList.add(new GuiButton(3, this.width / 2 + 2, i + 49 + 12, 98, 20, I18n.getString(EnumChatFormatting.DARK_RED + "Viru" + EnumChatFormatting.DARK_GREEN + "Z" + EnumChatFormatting.WHITE + ".fr")));
              this.buttonList.add(new GuiButton(4, this.width / 2 - 100, i + 49 + 12, 98, 20, I18n.getString(EnumChatFormatting.DARK_RED + "Foru" + EnumChatFormatting.DARK_GREEN + "m")));
              this.buttonList.add(new GuiButton(5, this.width / 2 - 50, i + 25 + 12, 98, 20, I18n.getString(EnumChatFormatting.WHITE + "Wiki" + EnumChatFormatting.DARK_GREEN + "Z")));
              
              this.buttonList.add(new GuiButton(7, this.width / 2 + 2, i + 72 + 12, 98, 20, I18n.getString("menu.quit")));
              
              this.buttonList.add(new GuiButtonSkype(8, this.width / 2 - 85, i + 25 + 12));
              
              this.buttonList.add(new GuiButton(9, this.width / 2 - 154, i + 72 + 12, 50, 20, I18n.getString("Cr" + Accentuation.E_Aigu + "dits")));
              }
              
              /**
              * Fired when a control is clicked. This is the equivalent of ActionListener.actionPerformed(ActionEvent e).
              */
              protected void actionPerformed(GuiButton par1GuiButton)
              {
              if (par1GuiButton.id == 0)
              {
              this.mc.displayGuiScreen(new GuiOptions(this, this.mc.gameSettings));
              }
              
              if (par1GuiButton.id == 10)
              {
              this.mc.displayGuiScreen(new GuiConnecting(this, mc, "localhost", 25565));
              //this.mc.displayGuiScreen(new GuiSelectWorld(this));
              }
              
              if (par1GuiButton.id == 3)
              {
              {
              
              Desktop desktop = null;
              java.net.URI url;
              try {
              url = new java.net.URI("http://viruz.fr");
              if (Desktop.isDesktopSupported())
              {
              desktop = Desktop.getDesktop();
              desktop.browse(url);
              }
              }
              catch (Exception ex) {
              Logger.getLogger(Menu.class.getName()).log(Level.SEVERE, null, ex);
              }
              }
              }
              if (par1GuiButton.id == 4)
              {
              {
              
              Desktop desktop = null;
              java.net.URI url;
              try {
              url = new java.net.URI("http://viruz.fr/forum/");
              if (Desktop.isDesktopSupported())
              {
              desktop = Desktop.getDesktop();
              desktop.browse(url);
              }
              }
              catch (Exception ex) {
              Logger.getLogger(Menu.class.getName()).log(Level.SEVERE, null, ex);
              }
              }
              }
              if (par1GuiButton.id == 5)
              {
              //this.mc.displayGuiScreen(new GuiConnexion(this, mc, "qzdqdqzd.com", 25565));
              
              {
              Desktop desktop = null;
              java.net.URI url;
              try {
              url = new java.net.URI("http://viruz.fr/forum/viewforum.php?f=18");
              if (Desktop.isDesktopSupported())
              {
              desktop = Desktop.getDesktop();
              desktop.browse(url);
              }
              }
              catch (Exception ex) {
              Logger.getLogger(Menu.class.getName()).log(Level.SEVERE, null, ex);
              }
              }
              }
              
              if (par1GuiButton.id == 7)
              {
              this.mc.shutdown();
              }
              
              if (par1GuiButton.id == 8)
              {
              {
              
              Desktop desktop = null;
              java.net.URI url;
              try {
              url = new java.net.URI("skype:live:contact.viruz?call");
              if (Desktop.isDesktopSupported())
              {
              desktop = Desktop.getDesktop();
              desktop.browse(url);
              }
              }
              catch (Exception ex) {
              Logger.getLogger(Menu.class.getName()).log(Level.SEVERE, null, ex);
              }
              }
              }
              
              if (par1GuiButton.id == 9)
              {
              this.mc.displayGuiScreen(new GuiCredits(this));
              }
              
              }
              
              /**
              * Draws the main menu panorama
              */
              private void drawPanorama(int par1, int par2, float par3)
              {
              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.glEnable(GL11.GL_BLEND);
              GL11.glDisable(GL11.GL_ALPHA_TEST);
              GL11.glDisable(GL11.GL_CULL_FACE);
              GL11.glDepthMask(false);
              GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
              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 + par3) / 400.0F) * 25.0F + 20.0F, 1.0F, 0.0F, 0.0F);
              GL11.glRotatef(-((float)this.panoramaTimer + par3) * 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_ALPHA_TEST);
              GL11.glEnable(GL11.GL_DEPTH_TEST);
              }
              
              /**
              * Rotate and blurs the skybox view in the main menu
              */
              private void rotateAndBlurSkybox(float par1)
              {
              this.mc.getTextureManager().bindTexture(this.field_110351_G);
              GL11.glCopyTexSubImage2D(GL11.GL_TEXTURE_2D, 0, 0, 0, 0, 0, 256, 256);
              GL11.glEnable(GL11.GL_BLEND);
              GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
              GL11.glColorMask(true, true, true, false);
              Tessellator tessellator = Tessellator.instance;
              tessellator.startDrawingQuads();
              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), 0.0D);
              tessellator.addVertexWithUV((double)j, 0.0D, (double)this.zLevel, (double)(1.0F + f1), 0.0D);
              tessellator.addVertexWithUV(0.0D, 0.0D, (double)this.zLevel, (double)(1.0F + f1), 1.0D);
              tessellator.addVertexWithUV(0.0D, (double)k, (double)this.zLevel, (double)(0.0F + f1), 1.0D);
              }
              
              tessellator.draw();
              GL11.glColorMask(true, true, true, true);
              }
              
              /**
              * Renders the skybox in the main menu
              */
              private void renderSkybox(int par1, int par2, float par3)
              {
              GL11.glViewport(0, 0, 256, 256);
              this.drawPanorama(par1, par2, par3);
              GL11.glDisable(GL11.GL_TEXTURE_2D);
              GL11.glEnable(GL11.GL_TEXTURE_2D);
              this.rotateAndBlurSkybox(par3);
              this.rotateAndBlurSkybox(par3);
              this.rotateAndBlurSkybox(par3);
              this.rotateAndBlurSkybox(par3);
              this.rotateAndBlurSkybox(par3);
              this.rotateAndBlurSkybox(par3);
              this.rotateAndBlurSkybox(par3);
              this.rotateAndBlurSkybox(par3);
              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;
              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.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 par1, int par2, float par3)
              {
              this.renderSkybox(par1, par2, par3);
              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);
              }
              
              String SRV = "Vous " + Accentuation.E_Circonflexe + "tes le survivant " + EnumChatFormatting.RED + mc.getSession().getUsername();
              String VZ = EnumChatFormatting.DARK_RED + "Viru" + EnumChatFormatting.DARK_GREEN + "Z";
              String ZE = "ZeAmateis - Copyright Mojang AB";
              
              this.drawString(this.fontRenderer, ZE, this.width - this.fontRenderer.getStringWidth(ZE) - 2, this.height - 10, 16777215);
              this.drawString(this.fontRenderer, VZ, 2, this.height - ( 1 * (this.fontRenderer.FONT_HEIGHT + 1)), 16777215);
              this.drawString(this.fontRenderer, SRV, this.width - this.fontRenderer.getStringWidth(SRV) - 2, this.height - 22, 16777215);
              
              drawRect(0, 0, width, 12, 0x66000000);
              this.drawString(this.fontRenderer, text, this.textPosition, 2, 16777215);
              
              super.drawScreen(par1, par2, par3);
              }
              
              static Minecraft func_110348_a(GuiMainMenu par0GuiMainMenu)
              {
              return par0GuiMainMenu.mc;
              }
              
              static boolean func_110349_a(boolean par0)
              {
              field_96139_s = par0;
              return par0;
              }
              
              static Minecraft func_130018_c(GuiMainMenu par0GuiMainMenu)
              {
              return par0GuiMainMenu.mc;
              }
              
              static Minecraft func_130019_d(GuiMainMenu par0GuiMainMenu)
              {
              return par0GuiMainMenu.mc;
              }
              }
              

              :::

              Si je t'ai filé un coup de main n'oublie pas le + / -
              Par contre évite les demandes d'aides en MP, tu sera sympa'

              La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

              Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

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

                J’utilise la dernière version de forge si c’est ça le problème ?

                9.11.1.965


                Le problème c’est que sur les autres serveurs, en local ou autre, ça fonctionne mais pas avec cette version de mcpc+ j’ai l’impression


                J’ai fait le test avec plusieurs mcp toujours pareil, donc cela doit venir du serveur mcpc+ si quelqu’un aurait le lien d’une build 1.6.4 valable je prends car je comprend pas d’où celà vient…

                Si je t'ai filé un coup de main n'oublie pas le + / -
                Par contre évite les demandes d'aides en MP, tu sera sympa'

                La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

                Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

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

                  http://ci.md-5.net/job/MCPC-Plus-164/

                  1 réponse Dernière réponse Répondre Citer 0
                  • RedRelayR Hors-ligne
                    RedRelay Moddeurs confirmés
                    dernière édition par

                    Pour ton objet Random, c’est pareil que la dernière fois, il ne sert a rien.
                    Dans readFile(), tu ne ferme pas tes fluxs. Faut qu’avant de sortir de la fonction tu appelles la méthode close() de bufferedReader dans un bloc finally ou tu test si ta variable n’est pas nulle.

                    Pourquoi initGui est en public ?
                    Pourquoi il n’est pas dans le constructeur ?

                    En fait il y a plein d’erreur de conception qui rendent ton programme instable je pense.
                    Dans private static String readFile(String url) ne fait pas un syso(e) mais un e.printStackTace().
                    Et régénère le rapport stp.

                    –------------------------------------------------------------------------------------
                    Si tu trouves mon intervention pertinente, n'hésite pas a m…

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

                      De quoi tu parle Black ?

                      Et Robin j’ai utilisé celui là déjà, mais même en local je crash ! WTF ?

                      Dois-je essayer de mettre à jour mon java ?

                      Si je t'ai filé un coup de main n'oublie pas le + / -
                      Par contre évite les demandes d'aides en MP, tu sera sympa'

                      La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

                      Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

                      1 réponse Dernière réponse Répondre Citer 0
                      • RedRelayR Hors-ligne
                        RedRelay Moddeurs confirmés
                        dernière édition par

                        De ta classe GuiMainMenu
                        Mettre a jour java ne sert a rien, et c’est peu probable que tu ai une erreur de format concernant ton url.

                        –------------------------------------------------------------------------------------
                        Si tu trouves mon intervention pertinente, n'hésite pas a m…

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

                          Ah !!! Mais je vais péter un plomb !

                          Voilà mon erreur mais d’où elle sort ? D’OU ?

                          :::
                          mars 16, 2014 1:16:47 PM net.minecraft.launchwrapper.LogWrapper log
                          Infos: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                          mars 16, 2014 1:16:47 PM net.minecraft.launchwrapper.LogWrapper log
                          Infos: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                          mars 16, 2014 1:16:47 PM net.minecraft.launchwrapper.LogWrapper log
                          Infos: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Forge Mod Loader version 6.4.49.965 for Minecraft 1.6.4 loading
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Java is Java HotSpot™ Client VM, version 1.7.0_45, running on Windows 8:x86:6.2, installed at C:\Program Files (x86)\Java\jre7
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                          2014-03-16 13:16:47 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                          2014-03-16 13:16:47 [Infos] [STDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg
                          2014-03-16 13:16:47 [Grave] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                          2014-03-16 13:16:48 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                          2014-03-16 13:16:48 [Infos] [STDOUT] Loaded 110 rules from AccessTransformer config file forge_at.cfg
                          2014-03-16 13:16:48 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                          2014-03-16 13:16:48 [Infos] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main}
                          2014-03-16 13:16:49 [Infos] [Minecraft-Client] Setting user: TheAmateis
                          2014-03-16 13:16:50 [Infos] [Minecraft-Client] LWJGL Version: 2.9.0
                          2014-03-16 13:16:51 [Infos] [Minecraft-Client] Reloading ResourceManager: Default
                          2014-03-16 13:16:52 [Infos] [MinecraftForge] Attempting early MinecraftForge initialization
                          2014-03-16 13:16:52 [Infos] [STDOUT] MinecraftForge v9.11.1.965 Initialized
                          2014-03-16 13:16:52 [Infos] [ForgeModLoader] MinecraftForge v9.11.1.965 Initialized
                          2014-03-16 13:16:52 [Infos] [STDOUT] Replaced 111 ore recipies
                          2014-03-16 13:16:52 [Infos] [MinecraftForge] Completed early MinecraftForge initialization
                          2014-03-16 13:16:52 [Infos] [ForgeModLoader] Reading custom logging properties from C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.965\forge\mcp\jars\config\logging.properties
                          2014-03-16 13:16:52 [Désactivé] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
                          2014-03-16 13:16:52 [Infos] [ForgeModLoader] Searching C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.965\forge\mcp\jars\mods for mods
                          2014-03-16 13:16:55 [Infos] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
                          2014-03-16 13:16:55 [Infos] [mcp] Activating mod mcp
                          2014-03-16 13:16:55 [Infos] [FML] Activating mod FML
                          2014-03-16 13:16:55 [Infos] [Forge] Activating mod Forge
                          2014-03-16 13:16:55 [Infos] [ViruZ] Activating mod ViruZ
                          2014-03-16 13:16:55 [Avertissement] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
                          2014-03-16 13:16:55 [Avertissement] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
                          2014-03-16 13:16:55 [Avertissement] [ViruZ] Mod ViruZ is missing a pack.mcmeta file, things may not work well
                          2014-03-16 13:16:55 [Infos] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ViruZ
                          2014-03-16 13:16:55 [Infos] [ForgeModLoader] Registering Forge Packet Handler
                          2014-03-16 13:16:55 [Infos] [ForgeModLoader] Succeeded registering Forge Packet Handler
                          2014-03-16 13:16:55 [Infos] [ForgeModLoader] Configured a dormant chunk cache size of 0
                          2014-03-16 13:16:55 [Grave] [Minecraft-Client] Using missing texture, unable to load: viruz:textures/blocks/presents.png
                          2014-03-16 13:16:56 [Grave] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_511_NormalWardrobe.png
                          2014-03-16 13:16:56 [Infos] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods
                          2014-03-16 13:16:56 [Avertissement] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
                          2014-03-16 13:16:56 [Avertissement] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
                          2014-03-16 13:16:56 [Avertissement] [ViruZ] Mod ViruZ is missing a pack.mcmeta file, things may not work well
                          2014-03-16 13:16:56 [Infos] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ViruZ
                          2014-03-16 13:16:57 [Grave] [Minecraft-Client] Using missing texture, unable to load: viruz:textures/blocks/presents.png
                          2014-03-16 13:16:57 [Grave] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_511_NormalWardrobe.png
                          2014-03-16 13:16:57 [Infos] [STDOUT]
                          2014-03-16 13:16:57 [Infos] [STDOUT] Starting up SoundSystem…
                          2014-03-16 13:16:57 [Infos] [STDOUT] Initializing LWJGL OpenAL
                          2014-03-16 13:16:57 [Infos] [STDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                          2014-03-16 13:16:57 [Infos] [STDOUT] OpenAL initialized.
                          2014-03-16 13:16:58 [Infos] [STDOUT]
                          2014-03-16 13:18:09 [Infos] [Minecraft-Client] Connecting to 127.0.0.1, 25565
                          2014-03-16 13:18:10 [Infos] [STDERR] net.minecraft.util.ReportedException: Ticking screen
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1587)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:910)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:838)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.main.Main.main(Main.java:93)
                          2014-03-16 13:18:10 [Infos] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                          2014-03-16 13:18:10 [Infos] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
                          2014-03-16 13:18:10 [Infos] [STDERR] Caused by: java.lang.NullPointerException
                          2014-03-16 13:18:10 [Infos] [STDERR] at java.net.URLEncoder.encode(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.urlEncode(NetClientHandler.java:336)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.sendSessionRequest(NetClientHandler.java:318)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.handleServerAuthData(NetClientHandler.java:299)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.network.packet.Packet253ServerAuthData.processPacket(Packet253ServerAuthData.java:51)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.network.TcpConnection.processReadPackets(TcpConnection.java:462)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.processReadPackets(NetClientHandler.java:281)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.GuiConnecting.updateScreen(GuiConnecting.java:51)
                          2014-03-16 13:18:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1580)
                          2014-03-16 13:18:10 [Infos] [STDERR] … 9 more
                          2014-03-16 13:18:10 [Infos] [STDOUT] –-- Minecraft Crash Report ----
                          2014-03-16 13:18:10 [Infos] [STDOUT] // Who set us up the TNT?
                          2014-03-16 13:18:10 [Infos] [STDOUT]
                          2014-03-16 13:18:10 [Infos] [STDOUT] Time: 16/03/14 13:18
                          2014-03-16 13:18:10 [Infos] [STDOUT] Description: Ticking screen
                          2014-03-16 13:18:10 [Infos] [STDOUT]
                          2014-03-16 13:18:10 [Infos] [STDOUT] java.lang.NullPointerException
                          2014-03-16 13:18:10 [Infos] [STDOUT] at java.net.URLEncoder.encode(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.urlEncode(NetClientHandler.java:336)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.sendSessionRequest(NetClientHandler.java:318)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.handleServerAuthData(NetClientHandler.java:299)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.network.packet.Packet253ServerAuthData.processPacket(Packet253ServerAuthData.java:51)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.network.TcpConnection.processReadPackets(TcpConnection.java:462)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.processReadPackets(NetClientHandler.java:281)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.GuiConnecting.updateScreen(GuiConnecting.java:51)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1580)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:910)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:838)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.main.Main.main(Main.java:93)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
                          2014-03-16 13:18:10 [Infos] [STDOUT]
                          2014-03-16 13:18:10 [Infos] [STDOUT]
                          2014-03-16 13:18:10 [Infos] [STDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
                          2014-03-16 13:18:10 [Infos] [STDOUT] –-------------------------------------------------------------------------------------
                          2014-03-16 13:18:10 [Infos] [STDOUT]
                          2014-03-16 13:18:10 [Infos] [STDOUT] – Head –
                          2014-03-16 13:18:10 [Infos] [STDOUT] Stacktrace:
                          2014-03-16 13:18:10 [Infos] [STDOUT] at java.net.URLEncoder.encode(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.urlEncode(NetClientHandler.java:336)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.sendSessionRequest(NetClientHandler.java:318)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.handleServerAuthData(NetClientHandler.java:299)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.network.packet.Packet253ServerAuthData.processPacket(Packet253ServerAuthData.java:51)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.network.TcpConnection.processReadPackets(TcpConnection.java:462)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.processReadPackets(NetClientHandler.java:281)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.GuiConnecting.updateScreen(GuiConnecting.java:51)
                          2014-03-16 13:18:10 [Infos] [STDOUT]
                          2014-03-16 13:18:10 [Infos] [STDOUT] – Affected screen –
                          2014-03-16 13:18:10 [Infos] [STDOUT] Details:
                          2014-03-16 13:18:10 [Infos] [STDOUT] Screen name: net.minecraft.client.multiplayer.GuiConnecting
                          2014-03-16 13:18:10 [Infos] [STDOUT] Stacktrace:
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1580)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:910)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:838)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.client.main.Main.main(Main.java:93)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
                          2014-03-16 13:18:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
                          2014-03-16 13:18:10 [Infos] [STDOUT]
                          2014-03-16 13:18:10 [Infos] [STDOUT] – System Details –
                          2014-03-16 13:18:10 [Infos] [STDOUT] Details:
                          2014-03-16 13:18:10 [Infos] [STDOUT] Minecraft Version: 1.6.4
                          2014-03-16 13:18:10 [Infos] [STDOUT] Operating System: Windows 8 (x86) version 6.2
                          2014-03-16 13:18:10 [Infos] [STDOUT] Java Version: 1.7.0_45, Oracle Corporation
                          2014-03-16 13:18:10 [Infos] [STDOUT] Java VM Version: Java HotSpot™ Client VM (mixed mode), Oracle Corporation
                          2014-03-16 13:18:10 [Infos] [STDOUT] Memory: 983048816 bytes (937 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
                          2014-03-16 13:18:10 [Infos] [STDOUT] JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
                          2014-03-16 13:18:10 [Infos] [STDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                          2014-03-16 13:18:10 [Infos] [STDOUT] Suspicious classes: FML and Forge are installed
                          2014-03-16 13:18:10 [Infos] [STDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
                          2014-03-16 13:18:10 [Infos] [STDOUT] FML: MCP v8.11 FML v6.4.49.965 Minecraft Forge 9.11.1.965 4 mods loaded, 4 mods active
                          2014-03-16 13:18:10 [Infos] [STDOUT] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                          2014-03-16 13:18:10 [Infos] [STDOUT] FML{6.4.49.965} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                          2014-03-16 13:18:10 [Infos] [STDOUT] Forge{9.11.1.965} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                          2014-03-16 13:18:10 [Infos] [STDOUT] ViruZ{3.0} [ViruZ] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                          2014-03-16 13:18:10 [Infos] [STDOUT] Launched Version: 1.6
                          2014-03-16 13:18:10 [Infos] [STDOUT] LWJGL: 2.9.0
                          2014-03-16 13:18:10 [Infos] [STDOUT] OpenGL: Intel® HD Graphics 3000 GL version 3.1.0 - Build 9.17.10.3347, Intel
                          2014-03-16 13:18:10 [Infos] [STDOUT] Is Modded: Definitely; Client brand changed to ‘fml,forge’
                          2014-03-16 13:18:10 [Infos] [STDOUT] Type: Client (map_client.txt)
                          2014-03-16 13:18:10 [Infos] [STDOUT] Resource Pack: Default
                          2014-03-16 13:18:10 [Infos] [STDOUT] Current Language: English (US)
                          2014-03-16 13:18:10 [Infos] [STDOUT] Profiler Position: N/A (disabled)
                          2014-03-16 13:18:10 [Infos] [STDOUT] Vec3 Pool Size: ERROR NullPointerException: null
                          2014-03-16 13:18:10 [Infos] [STDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.965\forge\mcp\jars.\crash-reports\crash-2014-03-16_13.18.10-client.txt
                          AL lib: (EE) alc_cleanup: 1 device not closed

                          :::


                          Je viens aussi de tester avec l’écran Multiplayer de base en local et le dédier, j’ai le même crash


                          Back pour le initGui() j’ai rien touché tout est de base dans Minecraft


                          Même avec un printStackTrace j’ai la même erreur de crash et l’annonce qui défile n’a rien à voir là dedans


                          Sans rien, toucher dans un mcp totalement vierge, je rentre juste l’adresse en multiplayer, BOUM il crash en local ou sur le dédier, mais avec une autre version de serveur, Rien ! J’ai fait le test avec isador, donc le souci est côté serveur ?

                          Si je t'ai filé un coup de main n'oublie pas le + / -
                          Par contre évite les demandes d'aides en MP, tu sera sympa'

                          La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

                          Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

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

                            Personne n’a d’idées pour mon problème ?

                            -Robin tu m’a parlé d’encodage qu’entends-tu par là ?

                            Suis-je le seul à qui ça arrive ?
                            J’utilise un mcpc+ en 1.6.4
                            mcpc-plus-1.6.4-R2.1-forge965-B250
                            Pour être exact !

                            Et un forge (client) de cette version:
                            1.6.4 build 9.11.1.965

                            Qu’est-ce que je dois vous fournir comme info du plus mis-à part ces logs

                            :::
                            mars 16, 2014 5:28:19 PM net.minecraft.launchwrapper.LogWrapper log
                            Infos: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                            mars 16, 2014 5:28:19 PM net.minecraft.launchwrapper.LogWrapper log
                            Infos: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
                            mars 16, 2014 5:28:19 PM net.minecraft.launchwrapper.LogWrapper log
                            Infos: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Forge Mod Loader version 6.4.49.965 for Minecraft 1.6.4 loading
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Java is Java HotSpot™ Client VM, version 1.7.0_45, running on Windows 8:x86:6.2, installed at C:\Program Files (x86)\Java\jre7
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker
                            2014-03-16 17:28:19 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                            2014-03-16 17:28:19 [Infos] [STDOUT] Loaded 40 rules from AccessTransformer config file fml_at.cfg
                            2014-03-16 17:28:19 [Grave] [ForgeModLoader] The binary patch set is missing. Either you are in a development environment, or things are not going to work!
                            2014-03-16 17:28:20 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper
                            2014-03-16 17:28:20 [Infos] [STDOUT] Loaded 110 rules from AccessTransformer config file forge_at.cfg
                            2014-03-16 17:28:20 [Infos] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker
                            2014-03-16 17:28:20 [Infos] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main}
                            2014-03-16 17:28:21 [Infos] [Minecraft-Client] Setting user: TheAmateis
                            2014-03-16 17:28:21 [Infos] [Minecraft-Client] LWJGL Version: 2.9.0
                            2014-03-16 17:28:23 [Infos] [Minecraft-Client] Reloading ResourceManager: Default
                            2014-03-16 17:28:24 [Infos] [MinecraftForge] Attempting early MinecraftForge initialization
                            2014-03-16 17:28:24 [Infos] [STDOUT] MinecraftForge v9.11.1.965 Initialized
                            2014-03-16 17:28:24 [Infos] [ForgeModLoader] MinecraftForge v9.11.1.965 Initialized
                            2014-03-16 17:28:24 [Infos] [STDOUT] Replaced 111 ore recipies
                            2014-03-16 17:28:25 [Infos] [MinecraftForge] Completed early MinecraftForge initialization
                            2014-03-16 17:28:25 [Infos] [ForgeModLoader] Reading custom logging properties from C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.965\forge\mcp\jars\config\logging.properties
                            2014-03-16 17:28:25 [Désactivé] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
                            2014-03-16 17:28:25 [Infos] [ForgeModLoader] Searching C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.965\forge\mcp\jars\mods for mods
                            2014-03-16 17:28:36 [Infos] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load
                            2014-03-16 17:28:36 [Infos] [mcp] Activating mod mcp
                            2014-03-16 17:28:36 [Infos] [FML] Activating mod FML
                            2014-03-16 17:28:36 [Infos] [Forge] Activating mod Forge
                            2014-03-16 17:28:36 [Infos] [ViruZ] Activating mod ViruZ
                            2014-03-16 17:28:36 [Avertissement] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
                            2014-03-16 17:28:36 [Avertissement] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
                            2014-03-16 17:28:36 [Avertissement] [ViruZ] Mod ViruZ is missing a pack.mcmeta file, things may not work well
                            2014-03-16 17:28:36 [Infos] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ViruZ
                            2014-03-16 17:28:36 [Infos] [ForgeModLoader] Registering Forge Packet Handler
                            2014-03-16 17:28:36 [Infos] [ForgeModLoader] Succeeded registering Forge Packet Handler
                            2014-03-16 17:28:36 [Infos] [ForgeModLoader] Configured a dormant chunk cache size of 0
                            2014-03-16 17:28:37 [Grave] [Minecraft-Client] Using missing texture, unable to load: viruz:textures/blocks/presents.png
                            2014-03-16 17:28:37 [Grave] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_511_NormalWardrobe.png
                            2014-03-16 17:28:39 [Infos] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods
                            2014-03-16 17:28:39 [Avertissement] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well
                            2014-03-16 17:28:39 [Avertissement] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well
                            2014-03-16 17:28:39 [Avertissement] [ViruZ] Mod ViruZ is missing a pack.mcmeta file, things may not work well
                            2014-03-16 17:28:39 [Infos] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ViruZ
                            2014-03-16 17:28:40 [Grave] [Minecraft-Client] Using missing texture, unable to load: viruz:textures/blocks/presents.png
                            2014-03-16 17:28:40 [Grave] [Minecraft-Client] Using missing texture, unable to load: minecraft:textures/blocks/MISSING_ICON_TILE_511_NormalWardrobe.png
                            2014-03-16 17:28:40 [Infos] [STDOUT]
                            2014-03-16 17:28:40 [Infos] [STDOUT] Starting up SoundSystem…
                            2014-03-16 17:28:40 [Infos] [STDOUT] Initializing LWJGL OpenAL
                            2014-03-16 17:28:40 [Infos] [STDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
                            2014-03-16 17:28:40 [Infos] [STDOUT] OpenAL initialized.
                            2014-03-16 17:28:40 [Infos] [STDOUT]
                            2014-03-16 17:28:55 [Infos] [Minecraft-Client] Connecting to localhost, 25565
                            2014-03-16 17:29:08 [Infos] [Minecraft-Client] Connecting to rdm.bigbrosteam.com, 25565
                            2014-03-16 17:29:10 [Infos] [STDERR] net.minecraft.util.ReportedException: Ticking screen
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1587)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:910)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:838)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.main.Main.main(Main.java:93)
                            2014-03-16 17:29:10 [Infos] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                            2014-03-16 17:29:10 [Infos] [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDERR] at java.lang.reflect.Method.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
                            2014-03-16 17:29:10 [Infos] [STDERR] Caused by: java.lang.NullPointerException
                            2014-03-16 17:29:10 [Infos] [STDERR] at java.net.URLEncoder.encode(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.urlEncode(NetClientHandler.java:336)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.sendSessionRequest(NetClientHandler.java:318)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.handleServerAuthData(NetClientHandler.java:299)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.network.packet.Packet253ServerAuthData.processPacket(Packet253ServerAuthData.java:51)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.network.TcpConnection.processReadPackets(TcpConnection.java:462)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.NetClientHandler.processReadPackets(NetClientHandler.java:281)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.multiplayer.GuiConnecting.updateScreen(GuiConnecting.java:51)
                            2014-03-16 17:29:10 [Infos] [STDERR] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1580)
                            2014-03-16 17:29:10 [Infos] [STDERR] … 9 more
                            2014-03-16 17:29:10 [Infos] [STDOUT] –-- Minecraft Crash Report ----
                            2014-03-16 17:29:10 [Infos] [STDOUT] // I let you down. Sorry 😞
                            2014-03-16 17:29:10 [Infos] [STDOUT]
                            2014-03-16 17:29:10 [Infos] [STDOUT] Time: 16/03/14 17:29
                            2014-03-16 17:29:10 [Infos] [STDOUT] Description: Ticking screen
                            2014-03-16 17:29:10 [Infos] [STDOUT]
                            2014-03-16 17:29:10 [Infos] [STDOUT] java.lang.NullPointerException
                            2014-03-16 17:29:10 [Infos] [STDOUT] at java.net.URLEncoder.encode(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.urlEncode(NetClientHandler.java:336)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.sendSessionRequest(NetClientHandler.java:318)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.handleServerAuthData(NetClientHandler.java:299)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.network.packet.Packet253ServerAuthData.processPacket(Packet253ServerAuthData.java:51)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.network.TcpConnection.processReadPackets(TcpConnection.java:462)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.processReadPackets(NetClientHandler.java:281)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.GuiConnecting.updateScreen(GuiConnecting.java:51)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1580)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:910)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:838)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.main.Main.main(Main.java:93)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
                            2014-03-16 17:29:10 [Infos] [STDOUT]
                            2014-03-16 17:29:10 [Infos] [STDOUT]
                            2014-03-16 17:29:10 [Infos] [STDOUT] A detailed walkthrough of the error, its code path and all known details is as follows:
                            2014-03-16 17:29:10 [Infos] [STDOUT] –-------------------------------------------------------------------------------------
                            2014-03-16 17:29:10 [Infos] [STDOUT]
                            2014-03-16 17:29:10 [Infos] [STDOUT] – Head –
                            2014-03-16 17:29:10 [Infos] [STDOUT] Stacktrace:
                            2014-03-16 17:29:10 [Infos] [STDOUT] at java.net.URLEncoder.encode(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.urlEncode(NetClientHandler.java:336)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.sendSessionRequest(NetClientHandler.java:318)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.handleServerAuthData(NetClientHandler.java:299)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.network.packet.Packet253ServerAuthData.processPacket(Packet253ServerAuthData.java:51)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.network.TcpConnection.processReadPackets(TcpConnection.java:462)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.NetClientHandler.processReadPackets(NetClientHandler.java:281)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.multiplayer.GuiConnecting.updateScreen(GuiConnecting.java:51)
                            2014-03-16 17:29:10 [Infos] [STDOUT]
                            2014-03-16 17:29:10 [Infos] [STDOUT] – Affected screen –
                            2014-03-16 17:29:10 [Infos] [STDOUT] Details:
                            2014-03-16 17:29:10 [Infos] [STDOUT] Screen name: net.minecraft.client.multiplayer.GuiConnecting
                            2014-03-16 17:29:10 [Infos] [STDOUT] Stacktrace:
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1580)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:910)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.Minecraft.run(Minecraft.java:838)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.client.main.Main.main(Main.java:93)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at java.lang.reflect.Method.invoke(Unknown Source)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)
                            2014-03-16 17:29:10 [Infos] [STDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:27)
                            2014-03-16 17:29:10 [Infos] [STDOUT]
                            2014-03-16 17:29:10 [Infos] [STDOUT] – System Details –
                            2014-03-16 17:29:10 [Infos] [STDOUT] Details:
                            2014-03-16 17:29:10 [Infos] [STDOUT] Minecraft Version: 1.6.4
                            2014-03-16 17:29:10 [Infos] [STDOUT] Operating System: Windows 8 (x86) version 6.2
                            2014-03-16 17:29:10 [Infos] [STDOUT] Java Version: 1.7.0_45, Oracle Corporation
                            2014-03-16 17:29:10 [Infos] [STDOUT] Java VM Version: Java HotSpot™ Client VM (mixed mode), Oracle Corporation
                            2014-03-16 17:29:10 [Infos] [STDOUT] Memory: 985416304 bytes (939 MB) / 1046937600 bytes (998 MB) up to 1046937600 bytes (998 MB)
                            2014-03-16 17:29:10 [Infos] [STDOUT] JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
                            2014-03-16 17:29:10 [Infos] [STDOUT] AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
                            2014-03-16 17:29:10 [Infos] [STDOUT] Suspicious classes: FML and Forge are installed
                            2014-03-16 17:29:10 [Infos] [STDOUT] IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
                            2014-03-16 17:29:10 [Infos] [STDOUT] FML: MCP v8.11 FML v6.4.49.965 Minecraft Forge 9.11.1.965 4 mods loaded, 4 mods active
                            2014-03-16 17:29:10 [Infos] [STDOUT] mcp{8.09} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                            2014-03-16 17:29:10 [Infos] [STDOUT] FML{6.4.49.965} [Forge Mod Loader] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                            2014-03-16 17:29:10 [Infos] [STDOUT] Forge{9.11.1.965} [Minecraft Forge] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                            2014-03-16 17:29:10 [Infos] [STDOUT] ViruZ{3.0} [ViruZ] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
                            2014-03-16 17:29:10 [Infos] [STDOUT] Launched Version: 1.6
                            2014-03-16 17:29:10 [Infos] [STDOUT] LWJGL: 2.9.0
                            2014-03-16 17:29:10 [Infos] [STDOUT] OpenGL: Intel® HD Graphics 3000 GL version 3.1.0 - Build 9.17.10.3347, Intel
                            2014-03-16 17:29:10 [Infos] [STDOUT] Is Modded: Definitely; Client brand changed to ‘fml,forge’
                            2014-03-16 17:29:10 [Infos] [STDOUT] Type: Client (map_client.txt)
                            2014-03-16 17:29:10 [Infos] [STDOUT] Resource Pack: Default
                            2014-03-16 17:29:10 [Infos] [STDOUT] Current Language: English (US)
                            2014-03-16 17:29:10 [Infos] [STDOUT] Profiler Position: N/A (disabled)
                            2014-03-16 17:29:10 [Infos] [STDOUT] Vec3 Pool Size: ERROR NullPointerException: null
                            2014-03-16 17:29:10 [Infos] [STDOUT] #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Jean-Baptiste\Desktop\Modding\JAVA\ViruZ Core Forge 1.6.4_9.11.1.965\forge\mcp\jars.\crash-reports\crash-2014-03-16_17.29.10-client.txt
                            AL lib: (EE) alc_cleanup: 1 device not closed

                            :::

                            L’erreur vient aussi bien sur le serveur dédier que j’ai chez OVH, qu’en local !

                            Voilà j’ai tout dit

                            Si je t'ai filé un coup de main n'oublie pas le + / -
                            Par contre évite les demandes d'aides en MP, tu sera sympa'

                            La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

                            Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

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

                              Quand tu vas dans Window -> Preferences -> General -> Workspace -> choisi UTF8.

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

                                Je teste tout ça !


                                Je crash en local ou sur le dédier quand même

                                Si je t'ai filé un coup de main n'oublie pas le + / -
                                Par contre évite les demandes d'aides en MP, tu sera sympa'

                                La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

                                Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

                                1 réponse Dernière réponse Répondre Citer 0
                                • isadorI Hors-ligne
                                  isador Moddeurs confirmés Modérateurs
                                  dernière édition par

                                  Quand je t’avais passé l’ip de mon serv ça marché non?

                                  1 réponse Dernière réponse Répondre Citer 0
                                  • RedRelayR Hors-ligne
                                    RedRelay Moddeurs confirmés
                                    dernière édition par

                                    Bon je DL forge, et je mets les mains dans le cambouis.
                                    Pour moi, vous ne cherchez pas au bon endroit et c’est pour ça que vous ne trouvez pas.
                                    Ça n’a rien avoir avec l’ip ou l’encodage je pense.

                                    –------------------------------------------------------------------------------------
                                    Si tu trouves mon intervention pertinente, n'hésite pas a m…

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

                                      Ok black dit moi si tu as du nouveau !

                                      Non isa avec toi cela a fonctionné !

                                      Si je t'ai filé un coup de main n'oublie pas le + / -
                                      Par contre évite les demandes d'aides en MP, tu sera sympa'

                                      La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

                                      Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

                                      1 réponse Dernière réponse Répondre Citer 0
                                      • RedRelayR Hors-ligne
                                        RedRelay Moddeurs confirmés
                                        dernière édition par

                                        Est ce que tu pourrais me donner un executable qui test uniquement ta classe ?
                                        Pourquoi faire une fonction actionPerform alors que tu pourrais la mettre directement sur tes boutons ?
                                        Ici tu charges la pile d’exécution inutilement (ça à la limite c’est pas trop grave), et a chaque fois que tu effectues une action ton CPU doit faire n test pour trouver sur lequel tu a appuyé. Ça niveau performance, c’est pas top.

                                        –------------------------------------------------------------------------------------
                                        Si tu trouves mon intervention pertinente, n'hésite pas a m…

                                        1 réponse Dernière réponse Répondre Citer 0
                                        • jglrxavpokJ Hors-ligne
                                          jglrxavpok Modérateurs
                                          dernière édition par

                                          @‘Blackout’:

                                          Est ce que tu pourrais me donner un executable qui test uniquement ta classe ?
                                          Pourquoi faire une fonction actionPerform alors que tu pourrais la mettre directement sur tes boutons ?
                                          Ici tu charges la pile d’exécution inutilement (ça à la limite c’est pas trop grave), et a chaque fois que tu effectues une action ton CPU doit faire n test pour trouver sur lequel tu a appuyé. Ça niveau performance, c’est pas top.

                                          Honnêtement, c’est pas un petit if qui change grand chose.

                                          Modérateur sur MFF. 
                                          Mon Github: http://github.com/jglrxavpok
                                          Mon compte Steam si vous voulez jouer à CS:GO ou TF2 avec moi: https://steamcommunity.com/id/jglrxavpok/

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

                                            Je sais pas trop de quoi tu parles quand tu me demande un exécutable de la classe GuiMainMenu Ce que je cherche à savoir si chez vous en local vous avez le même problème de connexion, donc un crash, si chez vous vous n’avez rien je re-installerais Eclipse, Mais ce que je ne comprends pas c’est que chez Isador il à eu le même problème que moi quand je lui ai filer l’adresse ip donc ça doit venir de la build du mcpc+ en 1.6.4 mais pas du côté client, à mon avis ! Après je ne suis pas sûr de ce que j’avance ! Car il doit bien y avoir une personne avant moi qui ai eu se problème ! Les logs client rien ne va, mais côté serveur il me détecte juste un lost connexion…

                                            Je sais plus trop où cherché en fait !

                                            Donc voilà si quelqu’un à un petit peu de temps à perdre pour moi: et qu’il veux faire un test en local il lui faut utiliser la dernière build de MCPC+ en 1.6.4 ou sinon tester cette adresse ip:

                                            rdm.bigbrosteam.com (pour vous éviter l’installation du serveur)

                                            Si il faut des screens ou une vidéo du problème je les/la ferais !

                                            Merci de votre aide dans tout les cas !

                                            Si je t'ai filé un coup de main n'oublie pas le + / -
                                            Par contre évite les demandes d'aides en MP, tu sera sympa'

                                            La JavaDoc c'est comme le PQ, ça sert à ce démerder tous seul. -Victor Hugo- 2017

                                            Une superbe API pour animer vos super modèles CraftStudio dans Minecraft !

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

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB