MFF

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

    Game Menu

    Planifier Épinglé Verrouillé Déplacé Résolu 1.7.x
    1.7.10
    35 Messages 3 Publieurs 8.5k 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

      @‘robin4002’:

      Dans la classe principale du mod

      Classe principale, pas classe du menu. La classe principale c’est celle ou il y a @Mod(modid= …

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

        Pour remplacer GuiGameMenu je fais ce code la : ```java
        package fr.minecraftforgefrance.client.custommenu;

        import net.minecraft.client.Minecraft;
        import net.minecraft.client.gui.GuiMainMenu;
        import cpw.mods.fml.client.FMLClientHandler;
        import cpw.mods.fml.common.FMLCommonHandler;
        import cpw.mods.fml.common.Mod;
        import cpw.mods.fml.common.Mod.EventHandler;
        import cpw.mods.fml.common.event.FMLInitializationEvent;
        import cpw.mods.fml.common.eventhandler.SubscribeEvent;
        import cpw.mods.fml.common.gameevent.TickEvent;
        import cpw.mods.fml.relauncher.Side;
        import cpw.mods.fml.relauncher.SideOnly;

        @Mod(modid = “custommenu”, name = “SlideFight Menu”, version = “2.0”)
        public class ModCustomMenu
        {
        @EventHandler
        public void init(FMLInitializationEvent event)
        {
        if(event.getSide().isClient())
        {
        FMLCommonHandler.instance().bus().register(this);
        }
        }

        @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 GuiCustomMainMenu());
        }
        }
        @SubscribeEvent
        @SideOnly(Side.CLIENT)
        public void onTick(TickEvent.ClientTickEvent event)
        {
        Minecraft mc = FMLClientHandler.instance().getClient();
        if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiIngameMenu.class))
        {
        mc.displayGuiScreen(new GuiCustomMainMenu());
        }
        }

        }

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

          @‘Zedokf_DrM’:

          Pour remplacer GuiGameMenu je fais ce code la  :

          package fr.minecraftforgefrance.client.custommenu;
          
          import net.minecraft.client.Minecraft;
          import net.minecraft.client.gui.GuiMainMenu;
          import cpw.mods.fml.client.FMLClientHandler;
          import cpw.mods.fml.common.FMLCommonHandler;
          import cpw.mods.fml.common.Mod;
          import cpw.mods.fml.common.Mod.EventHandler;
          import cpw.mods.fml.common.event.FMLInitializationEvent;
          import cpw.mods.fml.common.eventhandler.SubscribeEvent;
          import cpw.mods.fml.common.gameevent.TickEvent;
          import cpw.mods.fml.relauncher.Side;
          import cpw.mods.fml.relauncher.SideOnly;
          
          @Mod(modid = "custommenu", name = "SlideFight Menu", version = "2.0")
          public class ModCustomMenu
          {
             @EventHandler
             public void init(FMLInitializationEvent event)
             {
                 if(event.getSide().isClient())
                 {
                     FMLCommonHandler.instance().bus().register(this);
                 }
             }
          
             @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 GuiCustomMainMenu());
                 }
             }
             @SubscribeEvent
             @SideOnly(Side.CLIENT)
             public void onTick(TickEvent.ClientTickEvent event)
             {
                 Minecraft mc = FMLClientHandler.instance().getClient();
                 if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiIngameMenu.class))
                 {
                     mc.displayGuiScreen(new GuiCustomMainMenu());
                 }
             }
          
          }
          

          Le code est bon, sauf que tu as 2 fois la même fonction.

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

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

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

            J’ai dit reprendre la condition. Pas la fonction. Donc ça devrait être comme ça :

            package fr.minecraftforgefrance.client.custommenu;
            
            import net.minecraft.client.Minecraft;
            import net.minecraft.client.gui.GuiMainMenu;
            import cpw.mods.fml.client.FMLClientHandler;
            import cpw.mods.fml.common.FMLCommonHandler;
            import cpw.mods.fml.common.Mod;
            import cpw.mods.fml.common.Mod.EventHandler;
            import cpw.mods.fml.common.event.FMLInitializationEvent;
            import cpw.mods.fml.common.eventhandler.SubscribeEvent;
            import cpw.mods.fml.common.gameevent.TickEvent;
            import cpw.mods.fml.relauncher.Side;
            import cpw.mods.fml.relauncher.SideOnly;
            
            @Mod(modid = "custommenu", name = "SlideFight Menu", version = "2.0")
            public class ModCustomMenu
            {
                @EventHandler
                public void init(FMLInitializationEvent event)
                {
                    if(event.getSide().isClient())
                    {
                        FMLCommonHandler.instance().bus().register(this);
                    }
                }
            
                @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 GuiCustomMainMenu());
                    }
                    else if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiIngameMenu.class))
            
                    {
                        mc.displayGuiScreen(new GuiCustomIngameMenu());
                    }
                }
            }
            

            (il faut créer la classe GuiCustomIngameMenu)

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

              Dans la classe GuiCustomIngameMenu c’est les mêmes configurations du GuiCustomMainMenu ?

              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

                Déjà répondu plus tôt :
                @‘robin4002’:

                Il y aura une erreur dessus car elle n’existe pas, il te suffira de la créer. Ensuite tu copies / colles tout ce qu’il y a dans GuiIngameMenu, tu aura juste a changer le nom de la classe et ajouter les importation qui manque (ctrl + shift + o) et voila.

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

                  Le problème c’est que ça me relance le menu personnalisé 😕
                  Et ou est ce que je peux connaitre l’id des boutons tel que deconnexion options et autre ?****

                  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

                    heu ?!?
                    Tu as copier quelle classe ? Je t’ai dit de copier GuiIngameMenu (se trouve dans net.minecraft.client.gui), pas GuiCustomMainMenu …

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

                      ‘-’ il faut que je retourne en CP apprendre à lire … Désolé c’est de ma faute je fais ça dès que je peux

                      Edit : Je veux rouvrir eclipse ça me met un erreur : VOici les logs de l’erreur : ```
                      !SESSION 2015-03-27 20:15:29.595 –---------------------------------------------
                      eclipse.buildId=4.4.0.I20140606-1215
                      java.version=1.8.0_40
                      java.vendor=Oracle Corporation
                      BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=fr_FR
                      Framework arguments: -product org.eclipse.epp.package.standard.product
                      Command-line arguments: -data C:\Users\Braddy_2\Desktop\Braddy\forge-1.7.10\eclipse -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.standard.product

                      !ENTRY org.eclipse.jface 2 0 2015-03-27 20:16:20.032
                      !MESSAGE Keybinding conflicts occurred. They may interfere with normal accelerator operation.
                      !SUBENTRY 1 org.eclipse.jface 2 0 2015-03-27 20:16:20.033
                      !MESSAGE A conflict occurred for ALT+CTRL+P:
                      Binding(ALT+CTRL+P,
                      ParameterizedCommand(Command(org.eclipse.m2e.profiles.ui.commands.selectMavenProfileCommand,Select Maven Profiles,
                      ,
                      Category(org.eclipse.ui.category.window,Window,null,true),
                      org.eclipse.ui.internal.WorkbenchHandlerServiceHandler@322b09da,
                      ,true),null),
                      org.eclipse.ui.defaultAcceleratorConfiguration,
                      org.eclipse.ui.contexts.window,system)
                      Binding(ALT+CTRL+P,
                      ParameterizedCommand(Command(org.jboss.tools.maven.ui.commands.selectMavenProfileCommand,Maven Profiles Selection,
                      ,
                      Category(org.eclipse.ui.category.window,Window,null,true),
                      org.eclipse.ui.internal.WorkbenchHandlerServiceHandler@45d389f2,
                      ,true),null),
                      org.eclipse.ui.defaultAcceleratorConfiguration,
                      org.eclipse.ui.contexts.window,system)

                      !ENTRY org.jboss.tools.maven.profiles.ui 1 0 2015-03-27 20:16:58.739
                      !MESSAGE Found org.eclipse.m2e.profiles.ui, removing conflicting binding for org.jboss.tools.maven.ui.commands.selectMavenProfileCommand

                      !ENTRY org.eclipse.egit.ui 2 0 2015-03-27 20:17:00.852
                      !MESSAGE Warning: EGit couldn’t detect the installation path “gitPrefix” of native Git. Hence EGit can’t respect system level
                      Git settings which might be configured in ${gitPrefix}/etc/gitconfig under the native Git installation directory.
                      The most important of these settings is core.autocrlf. Git for Windows by default sets this parameter to true in
                      this system level configuration. The Git installation location can be configured on the
                      Team > Git > Configuration preference page’s ‘System Settings’ tab.
                      This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.

                      !ENTRY org.eclipse.egit.ui 2 0 2015-03-27 20:17:01.110
                      !MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
                      user global configuration and to define the default location to store repositories: ‘C:\Users\Braddy_2’. If this is
                      not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
                      EGit might behave differently since they see different configuration options.
                      This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.

                      !ENTRY org.eclipse.ui 4 4 2015-03-27 20:45:50.393
                      !MESSAGE Conflicting handlers for org.eclipse.wst.sse.ui.format: {org.eclipse.wst.sse.ui.internal.handlers.FormatHandler} vs {org.eclipse.wst.sse.ui.internal.handlers.FormatHandler}
                      !SESSION 2015-05-01 17:26:18.029 -----------------------------------------------
                      eclipse.buildId=4.4.2.M20150204-1700
                      java.version=1.8.0_40
                      java.vendor=Oracle Corporation
                      BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=fr_FR
                      Framework arguments: -product org.eclipse.epp.package.java.product
                      Command-line arguments: -data C:\Users\Braddy_2\Desktop\Braddy\forge-1.7.10 - Copie\eclipse -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.java.product

                      !ENTRY org.eclipse.core.resources 2 10035 2015-05-01 17:26:56.727
                      !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.

                      !ENTRY org.eclipse.egit.ui 2 0 2015-05-01 17:34:14.665
                      !MESSAGE Warning: EGit couldn’t detect the installation path “gitPrefix” of native Git. Hence EGit can’t respect system level
                      Git settings which might be configured in ${gitPrefix}/etc/gitconfig under the native Git installation directory.
                      The most important of these settings is core.autocrlf. Git for Windows by default sets this parameter to true in
                      this system level configuration. The Git installation location can be configured on the
                      Team > Git > Configuration preference page’s ‘System Settings’ tab.
                      This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.

                      !ENTRY org.eclipse.egit.ui 2 0 2015-05-01 17:34:14.681
                      !MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
                      user global configuration and to define the default location to store repositories: ‘C:\Users\Braddy_2’. If this is
                      not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
                      EGit might behave differently since they see different configuration options.
                      This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.

                      !ENTRY org.eclipse.ui 4 0 2015-05-01 20:47:50.500
                      !MESSAGE Unhandled event loop exception
                      !STACK 0
                      java.lang.NullPointerException
                      at org.eclipse.swt.widgets.Widget.sendMouseEvent(Widget.java:1118)
                      at org.eclipse.swt.widgets.Widget.wmMouseMove(Widget.java:2216)
                      at org.eclipse.swt.widgets.Control.WM_MOUSEMOVE(Control.java:5115)
                      at org.eclipse.swt.widgets.Control.windowProc(Control.java:4657)
                      at org.eclipse.swt.widgets.Table.windowProc(Table.java:5939)
                      at org.eclipse.swt.widgets.Display.windowProc(Display.java:5036)
                      at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
                      at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2549)
                      at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3759)
                      at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1151)
                      at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
                      at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1032)
                      at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:148)
                      at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:636)
                      at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
                      at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:579)
                      at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
                      at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:135)
                      at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
                      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 org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
                      at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
                      at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
                      at org.eclipse.equinox.launcher.Main.main(Main.java:1438)
                      !SESSION 2015-05-02 12:38:39.934 -----------------------------------------------
                      eclipse.buildId=4.4.2.M20150204-1700
                      java.version=1.8.0_40
                      java.vendor=Oracle Corporation
                      BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=fr_FR
                      Framework arguments: -product org.eclipse.epp.package.java.product
                      Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.java.product

                      !ENTRY org.eclipse.core.resources 2 10035 2015-05-02 12:39:14.965
                      !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.

                      !ENTRY org.eclipse.osgi 4 0 2015-05-02 12:39:17.567
                      !MESSAGE An error occurred while automatically activating bundle org.eclipse.core.resources (77).
                      !STACK 0
                      org.osgi.framework.BundleException: Exception in org.eclipse.core.resources.ResourcesPlugin.start() of bundle org.eclipse.core.resources.
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:792)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.start(BundleContextImpl.java:721)
                      at org.eclipse.osgi.internal.framework.EquinoxBundle.startWorker0(EquinoxBundle.java:936)
                      at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.startWorker(EquinoxBundle.java:319)
                      at org.eclipse.osgi.container.Module.doStart(Module.java:571)
                      at org.eclipse.osgi.container.Module.start(Module.java:439)
                      at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:454)
                      at org.eclipse.osgi.internal.hooks.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107)
                      at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:531)
                      at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320)
                      at org.eclipse.osgi.internal.loader.sources.SingleSourcePackage.loadClass(SingleSourcePackage.java:36)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:391)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337)
                      at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160)
                      at java.lang.ClassLoader.loadClass(Unknown Source)
                      at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:136)
                      at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
                      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 org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
                      at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
                      at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
                      at org.eclipse.equinox.launcher.Main.main(Main.java:1438)
                      Caused by: org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element ‘/Minecraft/src/main/resources/mcmod.info’ not found.
                      at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
                      at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:518)
                      at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:722)
                      at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1565)
                      at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:2464)
                      at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:2219)
                      at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:447)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:771)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:1)
                      at java.security.AccessController.doPrivileged(Native Method)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:764)
                      … 30 more
                      Root exception:
                      org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element ‘/Minecraft/src/main/resources/mcmod.info’ not found.
                      at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
                      at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:518)
                      at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:722)
                      at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1565)
                      at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:2464)
                      at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:2219)
                      at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:447)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:771)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:1)
                      at java.security.AccessController.doPrivileged(Native Method)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:764)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.start(BundleContextImpl.java:721)
                      at org.eclipse.osgi.internal.framework.EquinoxBundle.startWorker0(EquinoxBundle.java:936)
                      at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.startWorker(EquinoxBundle.java:319)
                      at org.eclipse.osgi.container.Module.doStart(Module.java:571)
                      at org.eclipse.osgi.container.Module.start(Module.java:439)
                      at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:454)
                      at org.eclipse.osgi.internal.hooks.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107)
                      at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:531)
                      at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320)
                      at org.eclipse.osgi.internal.loader.sources.SingleSourcePackage.loadClass(SingleSourcePackage.java:36)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:391)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337)
                      at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160)
                      at java.lang.ClassLoader.loadClass(Unknown Source)
                      at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:136)
                      at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
                      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 org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
                      at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
                      at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
                      at org.eclipse.equinox.launcher.Main.main(Main.java:1438)

                      !ENTRY org.eclipse.osgi 4 0 2015-05-02 12:39:17.838
                      !MESSAGE Application error
                      !STACK 1
                      java.lang.NoClassDefFoundError: org/eclipse/core/resources/IContainer
                      at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:136)
                      at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
                      at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
                      at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
                      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 org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:648)
                      at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
                      at org.eclipse.equinox.launcher.Main.run(Main.java:1465)
                      at org.eclipse.equinox.launcher.Main.main(Main.java:1438)
                      Caused by: java.lang.ClassNotFoundException: An error occurred while automatically activating bundle org.eclipse.core.resources (77).
                      at org.eclipse.osgi.internal.hooks.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:116)
                      at org.eclipse.osgi.internal.loader.classpath.ClasspathManager.findLocalClass(ClasspathManager.java:531)
                      at org.eclipse.osgi.internal.loader.ModuleClassLoader.findLocalClass(ModuleClassLoader.java:324)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:320)
                      at org.eclipse.osgi.internal.loader.sources.SingleSourcePackage.loadClass(SingleSourcePackage.java:36)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:391)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:345)
                      at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:337)
                      at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160)
                      at java.lang.ClassLoader.loadClass(Unknown Source)
                      … 14 more
                      Caused by: org.osgi.framework.BundleException: Exception in org.eclipse.core.resources.ResourcesPlugin.start() of bundle org.eclipse.core.resources.
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:792)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.start(BundleContextImpl.java:721)
                      at org.eclipse.osgi.internal.framework.EquinoxBundle.startWorker0(EquinoxBundle.java:936)
                      at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.startWorker(EquinoxBundle.java:319)
                      at org.eclipse.osgi.container.Module.doStart(Module.java:571)
                      at org.eclipse.osgi.container.Module.start(Module.java:439)
                      at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:454)
                      at org.eclipse.osgi.internal.hooks.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:107)
                      … 23 more
                      Caused by: org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element ‘/Minecraft/src/main/resources/mcmod.info’ not found.
                      at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
                      at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
                      at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
                      at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:518)
                      at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:722)
                      at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1565)
                      at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:2464)
                      at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:2219)
                      at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:447)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:771)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl$3.run(BundleContextImpl.java:1)
                      at java.security.AccessController.doPrivileged(Native Method)
                      at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:764)
                      … 30 more

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

                        up please

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

                          J’ai encore jamais vu ça, réinstalle Eclipse.

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

                            Donc voilà j’ai une erreur ici mon code du dossier ModCustomMenu : ```java
                            package fr.minecraftforgefrance.client.custommenu;

                            import net.minecraft.client.Minecraft;
                            import net.minecraft.client.gui.GuiIngameMenu;
                            import net.minecraft.client.gui.GuiMainMenu;
                            import cpw.mods.fml.client.FMLClientHandler;
                            import cpw.mods.fml.common.FMLCommonHandler;
                            import cpw.mods.fml.common.Mod;
                            import cpw.mods.fml.common.Mod.EventHandler;
                            import cpw.mods.fml.common.event.FMLInitializationEvent;
                            import cpw.mods.fml.common.eventhandler.SubscribeEvent;
                            import cpw.mods.fml.common.gameevent.TickEvent;
                            import cpw.mods.fml.relauncher.Side;
                            import cpw.mods.fml.relauncher.SideOnly;

                            @Mod(modid = “custommenu”, name = “SlideFight InGame”, version = “1.0”)
                            public class ModCustomMenu
                            {
                            @EventHandler
                            public void init(FMLInitializationEvent event)
                            {
                            if(event.getSide().isClient())
                            {
                            FMLCommonHandler.instance().bus().register(this);
                            }
                            }

                            @SubscribeEvent
                            @SideOnly(Side.CLIENT)
                            public void onTick(TickEvent.ClientTickEvent event)
                            {
                            Minecraft mc = FMLClientHandler.instance().getClient();
                            if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiIngameMenu.class))
                            {
                            mc.displayGuiScreen(new GuiCustomIngameMenu());
                            }
                            else if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiIngameMenu.class))

                            {
                            mc.displayGuiScreen(new GuiCustomIngameMenu());
                            }
                            }
                            }

                            
                            Et le code source de GuiCustomIngameMenu : ```java
                            package fr.minecraftforgefrance.client.custommenu;
                            
                            import net.minecraft.client.gui.GuiButton;
                            import net.minecraft.client.gui.GuiMainMenu;
                            import net.minecraft.client.gui.GuiOptions;
                            import net.minecraft.client.gui.GuiScreen;
                            import net.minecraft.client.gui.GuiShareToLan;
                            import net.minecraft.client.gui.achievement.GuiAchievements;
                            import net.minecraft.client.gui.achievement.GuiStats;
                            import net.minecraft.client.multiplayer.WorldClient;
                            import net.minecraft.client.resources.I18n;
                            import cpw.mods.fml.client.FMLClientHandler;
                            import cpw.mods.fml.relauncher.Side;
                            import cpw.mods.fml.relauncher.SideOnly;
                            
                            @SideOnly(Side.CLIENT)
                            public class GuiCustomIngameMenu extends GuiScreen
                            {
                            private int field_146445_a;
                            private int field_146444_f;
                            private static final String __OBFID = "CL_00000703";
                            
                            /**
                            * Adds the buttons (and other controls) to the screen in question.
                            */
                            public void initGui()
                            {
                            this.field_146445_a = 0;
                            this.buttonList.clear();
                            byte b0 = -16;
                            boolean flag = true;
                            this.buttonList.add(new GuiButton(1, this.width / 2 - 100, this.height / 4 + 120 + b0, I18n.format("menu.returnToMenu", new Object[0])));
                            
                            if (!this.mc.isIntegratedServerRunning())
                            {
                            ((GuiButton)this.buttonList.get(0)).displayString = I18n.format("menu.disconnect", new Object[0]);
                            }
                            
                            this.buttonList.add(new GuiButton(4, this.width / 2 - 100, this.height / 4 + 24 + b0, I18n.format("menu.returnToGame", new Object[0])));
                            this.buttonList.add(new GuiButton(0, this.width / 2 - 100, this.height / 4 + 96 + b0, 98, 20, I18n.format("menu.options", new Object[0])));
                            this.buttonList.add(new GuiButton(12, this.width / 2 + 2, this.height / 4 + 96 + b0, 98, 20, "Mod Options…"));
                            GuiButton guibutton;
                            this.buttonList.add(guibutton = new GuiButton(7, this.width / 2 - 100, this.height / 4 + 72 + b0, 200, 20, I18n.format("menu.shareToLan", new Object[0])));
                            this.buttonList.add(new GuiButton(5, this.width / 2 - 100, this.height / 4 + 48 + b0, 98, 20, I18n.format("gui.achievements", new Object[0])));
                            this.buttonList.add(new GuiButton(6, this.width / 2 + 2, this.height / 4 + 48 + b0, 98, 20, I18n.format("gui.stats", new Object[0])));
                            guibutton.enabled = this.mc.isSingleplayer() && !this.mc.getIntegratedServer().getPublic();
                            }
                            
                            protected void actionPerformed(GuiButton p_146284_1_)
                            {
                            switch (p_146284_1_.id)
                            {
                            case 0:
                            this.mc.displayGuiScreen(new GuiOptions(this, this.mc.gameSettings));
                            break;
                            case 1:
                            p_146284_1_.enabled = false;
                            this.mc.theWorld.sendQuittingDisconnectingPacket();
                            this.mc.loadWorld((WorldClient)null);
                            this.mc.displayGuiScreen(new GuiMainMenu());
                            case 2:
                            case 3:
                            default:
                            break;
                            case 4:
                            this.mc.displayGuiScreen((GuiScreen)null);
                            this.mc.setIngameFocus();
                            break;
                            case 5:
                            if (this.mc.thePlayer != null)
                            this.mc.displayGuiScreen(new GuiAchievements(this, this.mc.thePlayer.getStatFileWriter()));
                            break;
                            case 6:
                            if (this.mc.thePlayer != null)
                            this.mc.displayGuiScreen(new GuiStats(this, this.mc.thePlayer.getStatFileWriter()));
                            break;
                            case 7:
                            this.mc.displayGuiScreen(new GuiShareToLan(this));
                            break;
                            case 12:
                            FMLClientHandler.instance().showInGameModOptions(this);
                            break;
                            }
                            }
                            
                            /**
                            * Called from the main game loop to update the screen.
                            */
                            public void updateScreen()
                            {
                            super.updateScreen();
                            ++this.field_146444_f;
                            }
                            
                            /**
                            * Draws the screen and all the components in it.
                            */
                            public void drawScreen(int p_73863_1_, int p_73863_2_, float p_73863_3_)
                            {
                            this.drawDefaultBackground();
                            this.drawCenteredString(this.fontRendererObj, I18n.format("menu.game", new Object[0]), this.width / 2, 40, 16777215);
                            super.drawScreen(p_73863_1_, p_73863_2_, p_73863_3_);
                            }
                            }
                            

                            L’erreur est marquée ici : java FMLClientHandler.instance().showInGameModOptions(this); exactement ici : ```java
                            showInGameModOptions

                            
                            Ensuite comment modifier un bouton pour que quand un joueur clique dessus il arrive sur le site ? Merci d'avance
                            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

                              Ta classe principale n’est pas bon, je t’avais pourtant donné le bon code ici :
                              http://www.minecraftforgefrance.fr/showthread.php?tid=2055&pid=23389#pid23389

                              Pour l’erreur avec le
                              FMLClientHandler.instance().showInGameModOptions(this);
                              retire toute la ligne, de toute façon ce menu n’est pas encore fonctionnel.

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

                                
                                Minecraft mc = FMLClientHandler.instance().getClient();
                                if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiIngameMenu.class))
                                {
                                mc.displayGuiScreen(new GuiCustomIngameMenu());
                                }
                                else if(mc.currentScreen != null && mc.currentScreen.getClass().equals(GuiIngameMenu.class))
                                
                                {
                                mc.displayGuiScreen(new GuiCustomIngameMenu());
                                }
                                

                                Useless or not useless ? That is the question.

                                Essaie avec çà plutôt :
                                [java
                                Minecraft mc = FMLClientHandler.instance().getClient();
                                if(mc.currentScreen instanceof GuiIngameMenu)
                                {
                                mc.displayGuiScreen(new GuiCustomIngameMenu());
                                }
                                [/java]

                                Pour l’erreur : ta classe n’est pas extend GuiIngameMenu.

                                Faire un lien vers un site.

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

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

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

                                  ça fonctionne mais voilà encore un de mes problèmes : ```java
                                  package fr.minecraftforgefrance.client.custommenu;

                                  import java.awt.Desktop;
                                  import java.net.URL;

                                  import net.minecraft.client.gui.GuiButton;
                                  import net.minecraft.client.gui.GuiIngameMenu;
                                  import net.minecraft.client.gui.GuiMainMenu;
                                  import net.minecraft.client.gui.GuiOptions;
                                  import net.minecraft.client.gui.GuiScreen;
                                  import net.minecraft.client.gui.achievement.GuiAchievements;
                                  import net.minecraft.client.gui.achievement.GuiStats;
                                  import net.minecraft.client.multiplayer.WorldClient;
                                  import net.minecraft.client.resources.I18n;
                                  import cpw.mods.fml.client.FMLClientHandler;
                                  import cpw.mods.fml.relauncher.Side;
                                  import cpw.mods.fml.relauncher.SideOnly;

                                  @SideOnly(Side.CLIENT)
                                  public class GuiCustomIngameMenu extends GuiIngameMenu
                                  {
                                  private int field_146445_a;
                                  private int field_146444_f;
                                  private static final String __OBFID = “CL_00000703”;

                                  /**

                                  • Adds the buttons (and other controls) to the screen in question.
                                    */
                                    public void initGui()
                                    {
                                    this.field_146445_a = 0;
                                    this.buttonList.clear();
                                    byte b0 = -16;
                                    boolean flag = true;
                                    this.buttonList.add(new GuiButton(1, this.width / 2 - 100, this.height / 4 + 120 + b0, I18n.format(“menu.returnToMenu”, new Object[0])));

                                  if (!this.mc.isIntegratedServerRunning())
                                  {
                                  ((GuiButton)this.buttonList.get(0)).displayString = I18n.format(“menu.disconnect”, new Object[0]);
                                  }

                                  this.buttonList.add(new GuiButton(4, this.width / 2 - 100, this.height / 4 + 24 + b0, I18n.format(“menu.returnToGame”, new Object[0])));
                                  this.buttonList.add(new GuiButton(0, this.width / 2 - 100, this.height / 4 + 96 + b0, 98, 20, I18n.format(“menu.options”, new Object[0])));
                                  this.buttonList.add(new GuiButton(12, this.width / 2 + 2, this.height / 4 + 96 + b0, 98, 20, “TS3”));
                                  GuiButton guibutton;
                                  this.buttonList.add(guibutton = new GuiButton(7, this.width / 2 - 100, this.height / 4 + 72 + b0, 200, 20, I18n.format(“Site”, new Object[0])));
                                  this.buttonList.add(new GuiButton(5, this.width / 2 - 100, this.height / 4 + 48 + b0, 98, 20, I18n.format(“gui.achievements”, new Object[0])));
                                  this.buttonList.add(new GuiButton(6, this.width / 2 + 2, this.height / 4 + 48 + b0, 98, 20, I18n.format(“gui.stats”, new Object[0])));
                                  guibutton.enabled = this.mc.isSingleplayer() && !this.mc.getIntegratedServer().getPublic();
                                  }

                                  protected void actionPerformed(GuiButton p_146284_1_)
                                  {
                                  switch (p_146284_1_.id)
                                  {
                                  case 0:
                                  this.mc.displayGuiScreen(new GuiOptions(this, this.mc.gameSettings));
                                  break;
                                  case 1:
                                  p_146284_1_.enabled = false;
                                  this.mc.theWorld.sendQuittingDisconnectingPacket();
                                  this.mc.loadWorld((WorldClient)null);
                                  this.mc.displayGuiScreen(new GuiMainMenu());
                                  case 2:
                                  case 3:
                                  default:
                                  break;
                                  case 4:
                                  this.mc.displayGuiScreen((GuiScreen)null);
                                  this.mc.setIngameFocus();
                                  break;
                                  case 5:
                                  if (this.mc.thePlayer != null)
                                  this.mc.displayGuiScreen(new GuiAchievements(this, this.mc.thePlayer.getStatFileWriter()));
                                  break;
                                  case 6:
                                  if (this.mc.thePlayer != null)
                                  this.mc.displayGuiScreen(new GuiStats(this, this.mc.thePlayer.getStatFileWriter()));
                                  break;
                                  case 7:

                                  Desktop desktop = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null;
                                  if (desktop != null && desktop.isSupported(Desktop.Action.BROWSE)) {
                                  try {
                                  desktop.browse(new URL(“http://slidefight.fr”).toURI());
                                  } catch (Exception e) {
                                  e.printStackTrace();
                                  }
                                  }
                                  break;
                                  case 12:
                                  Desktop desktop = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null;
                                  if (desktop != null && desktop.isSupported(Desktop.Action.BROWSE)) {
                                  try {
                                  desktop.browse(new URL(“ts3server://151.80.115.24?port=”).toURI());
                                  } catch (Exception e) {
                                  e.printStackTrace();
                                  }
                                  } break;
                                  }
                                  }

                                  /**

                                  • Called from the main game loop to update the screen.
                                    */
                                    public void updateScreen()
                                    {
                                    super.updateScreen();
                                    ++this.field_146444_f;
                                    }

                                  /**

                                  • Draws the screen and all the components in it.
                                    */
                                    public void drawScreen(int p_73863_1_, int p_73863_2_, float p_73863_3_)
                                    {
                                    this.drawDefaultBackground();
                                    this.drawCenteredString(this.fontRendererObj, I18n.format(“menu.game”, new Object[0]), this.width / 2, 40, 16777215);
                                    super.drawScreen(p_73863_1_, p_73863_2_, p_73863_3_);
                                    }
                                    }
                                  
                                  Il y a une erreur ici : ```java
                                  case 12:
                                  Desktop desktop = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null;
                                  
                                  

                                  Plus précisément ici : ```java
                                  Desktop desktop

                                  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

                                    Il faut un copier/coller du rapport de crash.

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

                                      La variable est déjà utilisée plus haut, change juste le nom de la variable.

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

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

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

                                        D’accord pour le bouton du site ça fonctionne et si je veux faire un bouton ts3 comment faire ? J’ai mis ce code la mais ça fonctionne pas ça ne m’ouvre pas teamspeak : ```java
                                        case 12:
                                        Desktop teamspeak = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null;
                                        if (teamspeak != null && teamspeak.isSupported(Desktop.Action.BROWSE))
                                        {
                                        try {
                                        teamspeak.browse(new URL(“ts3server://151.80.115.24?port=”).toURI());
                                        } catch (Exception e) {
                                        e.printStackTrace();
                                        }
                                        }
                                        break;

                                        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

                                          ts3server://151.80.115.24?port=9987

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

                                            ça ne fonctionne toujours pas voilà ce que j’ai dans la console : ```
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: java.net.MalformedURLException: unknown protocol: ts3server
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.net.URL.<init>(Unknown Source)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.net.URL.<init>(Unknown Source)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.net.URL.<init>(Unknown Source)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at fr.minecraftforgefrance.client.custommenu.GuiCustomIngameMenu.actionPerformed(GuiCustomIngameMenu.java:96)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.gui.GuiScreen.mouseClicked(GuiScreen.java:252)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:344)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:313)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runTick(Minecraft.java:1720)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1028)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.Minecraft.run(Minecraft.java:951)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.client.main.Main.main(Main.java:164)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at java.lang.reflect.Method.invoke(Unknown Source)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
                                            [20:58:07] [Client thread/INFO] [STDERR]: [java.lang.Throwable$WrappedPrintStream:println:-1]: at GradleStart.main(Unknown Source)

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

                                            MINECRAFT FORGE FRANCE © 2024

                                            Powered by NodeBB