Custom-Main-Menu icon indicating copy to clipboard operation
Custom-Main-Menu copied to clipboard

How can I make a button that connects you directly to a certain server?

Open Patosalvaje1212 opened this issue 3 years ago • 2 comments

I'm making a modpack for a server, and I want to add a button to connects you to the server directly.

Patosalvaje1212 avatar Apr 02 '21 21:04 Patosalvaje1212

	"connect":
    {
        "text" : "options.language",
		"texture" : "your texture",
        "posX" : 97,
        "posY" : 50,
        "width" : 196,
        "height" : 20,
		imageWidth : 100,
		imageHeight : 50,			
		"alignment" : "left_center",
        "action" : 
        {
            "type" : "ip",
            "ip" : "your ip"
        }
    },

Lil-Skiirrtt avatar Apr 22 '21 13:04 Lil-Skiirrtt

"connect": { "text" : "Connect to Server", "texture" : "your texture", "posX" : 97, "posY" : 50, "width" : 196, "height" : 20, imageWidth : 100, imageHeight : 50, "alignment" : "left_center", "action" : { "type" : "connectToServer", "ip" : "your ip" } },

davidjimeneztv avatar Oct 16 '21 14:10 davidjimeneztv