Хостинг серверов Minecraft playvds.com
  1. Вы находитесь в русском сообществе Bukkit. Мы - администраторы серверов Minecraft, разрабатываем собственные плагины и переводим на русский язык плагины наших собратьев из других стран.
    Скрыть объявление

Решено Компиляция

Тема в разделе "[Архив] Помощь", создана пользователем tiger'ok, 19 апр 2013.

Статус темы:
Закрыта.
  1. Автор темы
    tiger'ok

    tiger'ok Старожил

    Баллы:
    123
    Skype:
    eto_tiger
    Имя в Minecraft:
    tigerOK
    Всем привет, изменяю клиентску часть, при компиляции ругается на 26 строку.
    Код:
    package net.minecraft.src;
     
    public class GuiIngameMenu extends GuiScreen
    {
        /** Also counts the number of updates, not certain as to why yet. */
        private int updateCounter2 = 0;
     
        /** Counts the number of screen updates. */
        private int updateCounter = 0;
     
        /**
        * Adds the buttons (and other controls) to the screen in question.
        */
        public void initGui()
        {
            this.updateCounter2 = 0;
            this.controlList.clear();
            byte var1 = -16;
            this.controlList.add(new GuiButton(1, this.width / 2 - 100, this.height / 4 + 120 + var1, StatCollector.translateToLocal("menu.returnToMenu")));
     
         
     
            this.controlList.add(new GuiButton(4, this.width / 2 - 100, this.height / 4 + 24 + var1, StatCollector.translateToLocal("menu.returnToGame")));
            this.controlList.add(new GuiButton(0, this.width / 2 - 100, this.height / 4 + 96 + var1, 98, 20, StatCollector.translateToLocal("menu.options")));
            GuiButton var3;
            var3.enabled = this.mc.isSingleplayer().getPublic();
        }
     
        /**
        * Fired when a control is clicked. This is the equivalent of ActionListener.actionPerformed(ActionEvent e).
        */
        protected void actionPerformed(GuiButton par1GuiButton)
        {
            switch (par1GuiButton.id)
            {
                case 0:
                    this.mc.displayGuiScreen(new GuiOptions(this, this.mc.gameSettings));
                    break;
     
                case 1:
                    par1GuiButton.enabled = false;
                    this.mc.statFileWriter.readStat(StatList.leaveGameStat, 1);
                    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();
                    this.mc.sndManager.resumeAllSounds();
                    break;
     
                case 5:
                    this.mc.displayGuiScreen(new GuiAchievements(this.mc.statFileWriter));
                    break;
     
                case 6:
                    this.mc.displayGuiScreen(new GuiStats(this, this.mc.statFileWriter));
                    break;
     
                case 7:
                    this.mc.displayGuiScreen(new GuiShareToLan(this));
            }
        }
     
        /**
        * Called from the main game loop to update the screen.
        */
        public void updateScreen()
        {
            super.updateScreen();
            ++this.updateCounter;
        }
     
        /**
        * Draws the screen and all the components in it.
        */
        public void drawScreen(int par1, int par2, float par3)
        {
            this.drawDefaultBackground();
            this.drawCenteredString(this.fontRenderer, "Game menu", this.width / 2, 40, 16777215);
            super.drawScreen(par1, par2, par3);
        }
    }
    
     
  2. Хостинг MineCraft
    <
  3. Den_Abr

    Den_Abr Старожил Девелопер Пользователь

    Баллы:
    173
    Skype:
    Den_Abr
    Имя в Minecraft:
    Den_Abr
    Спойлер пустой
     
  4. Автор темы
    tiger'ok

    tiger'ok Старожил

    Баллы:
    123
    Skype:
    eto_tiger
    Имя в Minecraft:
    tigerOK
    Исправил.
     
    Vedroyder нравится это.
  5. Den_Abr

    Den_Abr Старожил Девелопер Пользователь

    Баллы:
    173
    Skype:
    Den_Abr
    Имя в Minecraft:
    Den_Abr
    Я думал, там будет текст ошибки
     
Статус темы:
Закрыта.

Поделиться этой страницей