CCBlueX Forum

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

    How to remove title from launcher to normal. I didn't realize what you replied to a thread

    Scripts
    2
    2
    136
    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.
    • Xm Denuncias
      Xm Denuncias last edited by

      "I don't like the LiquidBounce b72 title at the top, whenever i screenshare on discord it gives it away, especially when im closet hacking

      how do i remove this?"

      Thread
      "@gridzz Using scripts.

      Java.type("java.awt.Window").setTitle("Minecraft 1.8.9")"

      I didn't realize what I was supposed to do, could someone explain everything I have to do this?

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

        @xm-denuncias

        var scriptName = "SpaceKingTitle"
        var scriptVersion = 1.1
        var scriptAuthor = "GKing"
        
        var SpaceKingTitle = new SpaceKingTitle()
        var client
        
        function SpaceKingTitle() {
        	var S = 0
        	var HM = 0
        	var M =0
        	var H = 0
            var Message = value.createText("Title", "Liquidbounce | ");
            var Timer = value.createBoolean("Timer", true);
        	var TimerLanguage = value.createList("TimerLanguage", ["English"], "English");
        	
        	this.getName = function() {
                return "SpaceKingTitle"
            }
        
            this.getDescription = function() {
                return "SpaceKingTitle"
            }
        
            this.getCategory = function() {
                return "Fun"
            }
            this.onUpdate = function() {
        		 HM += 1
        		 if (HM ==20){
        		   S = S + 1
        		   HM = 0
        		   
        		  }
        		 if (S ==60){
        		   M = M +1
        		   S = 0
        		  }
        		  if (M==60){
        		   H = H+1
        		   M = 0
        		  }
        	if(Timer.get() == true){
        							    switch(TimerLanguage.get()) {
        						    case "China":
        		Display.setTitle(Message.get() + " " +  H  +'  时  '  +M +'  分  '+S+'  秒  ' )
        		break;
        						    case "English":
        									Display.setTitle(Message.get() + " " +  H  +'  Hours  '  +M +'  Minutes  '+S+'  Seconds  ' )
        		break;
        								}
        	} else {
        				Display.setTitle(Message.get())
        	}
        }
        	this.addValues = function(values) {
        		values.add(Message);
        		values.add(Timer);
        		values.add(TimerLanguage);
        	}
        }
        
        var Display = Java.type('org.lwjgl.opengl.Display')
        
        function onLoad() {}
        
        function onEnable() {
            client = moduleManager.registerModule(SpaceKingTitle)
        }
        
        function onDisable() {
            moduleManager.unregisterModule(client)
        }
        
        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