lumien231 / Custom-Main-Menu

A mod that allows you to modify the minecraft main menu
MIT License
67 stars 37 forks source link

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

Open Patosalvaje1212 opened 3 years ago

Patosalvaje1212 commented 3 years ago

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

Lil-Skiirrtt commented 3 years ago
    "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"
        }
    },
davidjimeneztv commented 2 years ago

"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" } },