CCBlueX Forum

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

    Gui move

    Scripts
    5
    7
    494
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • DreamWasFucked
      DreamWasFucked Banned last edited by DreamWasFucked

      About script

      Allows you to walk not only with opened inventory
      Allows rotation of the camera

      Bypass mode can bypass BAC, Intave (No click), Taka (No click)

      Code

      var C16PacketClientStatus = Java.type('net.minecraft.network.play.client.C16PacketClientStatus'),
          GuiChat = Java.type('net.minecraft.client.gui.GuiChat'),
          Keyboard = Java.type('org.lwjgl.input.Keyboard');
      var keys = [
          mc.gameSettings.keyBindRight,
          mc.gameSettings.keyBindLeft,
          mc.gameSettings.keyBindBack,
          mc.gameSettings.keyBindForward,
          mc.gameSettings.keyBindJump,
          mc.gameSettings.keyBindSprint
      ];
      var script = registerScript({
          name: 'Gui Move',
          version: '0.0.0',
          authors: ['Shurpe']
      });
      script.registerModule({
          name: 'Gui Move',
          description: '',
          category: 'Fun',
          settings: {
              mode: Setting.list({
                  name: 'Mode',
                  default: 'Normal',
      			values: ['Normal', 'Bypass']
              })
          }
      }, function (module) {
          module.on('update', function () {
              module.tag = module.settings.mode.get();
              if (!(mc.currentScreen instanceof GuiChat || mc.currentScreen == null)) {
                  for (key in keys) {
                      keyCode = keys[key].getKeyCode();
                      keys[key].pressed = Keyboard.isKeyDown(keyCode);
                  }
                  if (Keyboard.isKeyDown(Keyboard.KEY_UP)) {
                      if (mc.thePlayer.rotationPitch > -90) {
                          mc.thePlayer.rotationPitch -= 5;
                      }
                  }
                  if (Keyboard.isKeyDown(Keyboard.KEY_DOWN)) {
                      if (mc.thePlayer.rotationPitch < 90) {
                          mc.thePlayer.rotationPitch += 5;
                      }
                  }
                  if (Keyboard.isKeyDown(Keyboard.KEY_LEFT)) {
                      mc.thePlayer.rotationYaw -= 5;
                  }
                  if (Keyboard.isKeyDown(Keyboard.KEY_RIGHT)) {
                      mc.thePlayer.rotationYaw += 5;
                  }
              }
          });
          module.on('packet', function(e) {
              var packet = e.getPacket();
              if (module.settings.mode.get() == 'Bypass') {
                  if (packet instanceof C16PacketClientStatus && packet.getStatus() == C16PacketClientStatus.EnumState.OPEN_INVENTORY_ACHIEVEMENT) {
                      e.cancelEvent();
                  }
              }
          });
      });
      
      Its Domme Johho Rafay 3 Replies Last reply Reply Quote 0
      • Its Domme
        Its Domme @DreamWasFucked last edited by

        @skidma You are a genius

        1 Reply Last reply Reply Quote 0
        • Johho
          Johho @DreamWasFucked last edited by

          @skidma so u can move the camera when inside a gui?

          DreamWasFucked 1 Reply Last reply Reply Quote 0
          • DreamWasFucked
            DreamWasFucked Banned @Johho last edited by

            @johho yes

            1 Reply Last reply Reply Quote 0
            • Rafay
              Rafay @DreamWasFucked last edited by

              @skidma does it remove the gui(silent)??

              Plumer Man 1 Reply Last reply Reply Quote 0
              • Plumer Man
                Plumer Man @Rafay last edited by

                @rafay no

                Plumer Man 1 Reply Last reply Reply Quote 0
                • Plumer Man
                  Plumer Man @Plumer Man last edited by

                  @plumer-man U use arrow keys to move. AAC flags for killaura

                  1 Reply Last reply Reply Quote 0
                  • First post
                    Last post
                  About
                  • Terms of Service
                  • Privacy Policy
                  • Status
                  • Contact Us
                  Downloads
                  • Releases
                  • Source code
                  • License
                  Docs
                  • Tutorials
                  • CustomHUD
                  • AutoSettings
                  • ScriptAPI
                  Community
                  • Forum
                  • Guilded
                  • YouTube
                  • Twitter
                  • D.Tube