• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.
  • Minecraft 1.16.220 Update + Bug/Crash Fixes
    Added MCPE 1.16.220 version and fixed crashes for multiple plugins. You can view the full changelist here.
  • Forum Updates - 4/11/2021
    Various changes have been made to the forums and a few categories. You can view the full changelist here.

Making A GUI with Mad commands (Paste This Into RCON)

Warning!
Hello , there have been no replies in this thread for more than 30 days.
Please make sure you have a valid reason before you reply to this thread or you may face moderation action.
#1
CREATOR OF DOCUMENT: DaystormerMG27

TITLE: BETTER UNDERSTANDING OF MAKING A GUI


NOTE: THIS IS ONLY MEANT TO COPY AND PASTE IN RCON

CHANGE COMMAND NAME: /cmd modify z <name of the command name you want> <Description of command (optional)>

EXAMPLE SETUP: MAKE SURE YOU MODIFY THIS SETUP OTHERWISE YOU'LL GET A DIFFERENT SETUP.

RECOMMENDED LINES TO CHANGE

Line #3 cmd add z %gui%[\"title\"] = \"Title Name\"
Line #4 cmd add z %gui%[\"content\"] = \"Description\"
Line#5 cmd add z %button0%[\"text\"] = \"Button 0\"
Line #6 cmd add z %button1%[\"text\"] = \"Button 1\"
Line #7 cmd add z %button2%[\"text\"] = \"Button 2\"
Line #8 cmd add z %button3%[\"text\"] = \"Button 3\"
Line #7 cmd add z %button4%["text"] = \"Button 4\"
Line #10 cmd add z %button5%["text"] = \"EXIT\"
Line #26 cmd add z <type your command>
Line #28 cmd add z <type your command>
Line #30 cmd add z <type your command>
Line #32 cmd add z <type your command>
Line #34 cmd add z <type your command>

Make sure you make an exit for your GUI

NOTE: Don't include the <> while typing the commands for your guide!

cmd create z
cmd add z %player% = %p%
cmd add z %gui%[\"type\"] = \"form\"
cmd add z %gui%[\"title\"] = \"§l§5MOST POPULAR ON AOT4 FACTIONS\"
cmd add z %gui%[\"content\"] = \"§bWelcome to most popular list. Just click any button to continue to where you want to go!!\"
cmd add z %button0%[\"text\"] = \"§l§3AOT4 VILLAGE\"
cmd add z %button1%[\"text\"] = \"§l§4JAGASTAN\"
cmd add z %button2%[\"text\"] = \"§l§1FACTIONS\"
cmd add z %button3%[\"text\"] = \"§l§6SUMO\"
cmd add z %button4%[\"text\"] = \"§l§aSKYBLOCK\"
cmd add z %button5%[\"text\"] = \"§l§0EXIT\"
cmd add z %buttons%[] = %button0%
cmd add z %buttons%[] = %button1%
cmd add z %buttons%[] = %button2%
cmd add z %buttons%[] = %button3%
cmd add z %buttons%[] = %button4%
cmd add z %buttons%[] = %button5%
cmd add z %gui%["buttons"] = %buttons%
cmd add z %response% = dialog(%player%,%gui%)
cmd add z if %response% = 0 then goto 26
cmd add z if %response% = 1 then goto 28
cmd add z if %response% = 2 then goto 30
cmd add z if %response% = 3 then goto 32
cmd add z if %response% = 4 then goto 34
cmd add z if %response% = 5 then goto 35
cmd add z exit
cmd add z /warp city
cmd add z exit
cmd add z /warp beto
cmd add z exit
cmd add z /warp factions
cmd add z exit
cmd add z /warp sumo
cmd add z exit
cmd add z /warp skyblock
cmd add z exit

LIST OF COMMANDS NUMBERED

The reason why there is a duplicate of the mad command is to help you memorize the lines better and to make it easier so you don't have to count to find out which line is which

cmd create z
1.cmd add z %player% = %p%
2.cmd add z %gui%[\"type\"] = \"form\"
3.cmd add z %gui%[\"title\"] = \"§l§5MOST POPULAR ON AOT4 FACTIONS\"
4. cmd add z %gui%[\"content\"] = \"§bWelcome to most popular list. Just click any button to continue to where you want to go!!\"
5.cmd add z %button0%[\"text\"] = \"§l§3AOT4 VILLAGE\"
6.cmd add z %button1%[\"text\"] = \"§l§4JAGASTAN\"
7.cmd add z %button2%[\"text\"] = \"§l§1FACTIONS\"
8.cmd add z %button3%[\"text\"] = \"§l§6SUMO\"
9.cmd add z %button4%["text"] = \"§l§eSKYBLOCK\"
10.cmd add z %button5%["text"] = \"§l§0EXIT\"
11.cmd add z %buttons%[] = %button0%
12.cmd add z %buttons%[] = %button1%
13.cmd add z %buttons%[] = %button2%
14.cmd add z %buttons%[] = %button3%
15.cmd add z %buttons%[] = %button4%
16.cmd add z %buttons%[] = %button5%
17.cmd add z %gui%["buttons"] = %buttons%
18.cmd add z %response% = dialog(%player%,%gui%)
19.cmd add z if %response% = 0 then goto 26
20.cmd add z if %response% = 1 then goto 28
21.cmd add z if %response% = 2 then goto 30
22.cmd add z if %response% = 3 then goto 32
23.cmd add z if %response% = 4 then goto 34
24.cmd add z if %response% = 5 then goto 35
25.cmd add z exit
26.cmd add z /warp city
27.cmd add z exit
28.cmd add z /warp beto
29.cmd add z exit
30.cmd add z /warp factions
31.cmd add z exit
32.cmd add z /warp sumo
33.cmd add z exit
34.cmd add z /warp skyblock
35.cmd add z exit
Post automatically merged:

CREATOR OF DOCUMENT: DaystormerMG27

TITLE: BETTER UNDERSTANDING OF MAKING A GUI


NOTE: THIS IS ONLY MEANT TO COPY AND PASTE IN RCON

CHANGE COMMAND NAME: /cmd modify z <name of the command name you want> <Description of command (optional)>

EXAMPLE SETUP: MAKE SURE YOU MODIFY THIS SETUP OTHERWISE YOU'LL GET A DIFFERENT SETUP.

RECOMMENDED LINES TO CHANGE

Line #3 cmd add z %gui%[\"title\"] = \"Title Name\"
Line #4 cmd add z %gui%[\"content\"] = \"Description\"
Line#5 cmd add z %button0%[\"text\"] = \"Button 0\"
Line #6 cmd add z %button1%[\"text\"] = \"Button 1\"
Line #7 cmd add z %button2%[\"text\"] = \"Button 2\"
Line #8 cmd add z %button3%[\"text\"] = \"Button 3\"
Line #7 cmd add z %button4%["text"] = \"Button 4\"
Line #10 cmd add z %button5%["text"] = \"EXIT\"
Line #26 cmd add z <type your command>
Line #28 cmd add z <type your command>
Line #30 cmd add z <type your command>
Line #32 cmd add z <type your command>
Line #34 cmd add z <type your command>

Make sure you make an exit for your GUI

NOTE: Don't include the <> while typing the commands for your guide!

cmd create z
cmd add z %player% = %p%
cmd add z %gui%[\"type\"] = \"form\"
cmd add z %gui%[\"title\"] = \"§l§5MOST POPULAR ON AOT4 FACTIONS\"
cmd add z %gui%[\"content\"] = \"§bWelcome to most popular list. Just click any button to continue to where you want to go!!\"
cmd add z %button0%[\"text\"] = \"§l§3AOT4 VILLAGE\"
cmd add z %button1%[\"text\"] = \"§l§4JAGASTAN\"
cmd add z %button2%[\"text\"] = \"§l§1FACTIONS\"
cmd add z %button3%[\"text\"] = \"§l§6SUMO\"
cmd add z %button4%[\"text\"] = \"§l§aSKYBLOCK\"
cmd add z %button5%[\"text\"] = \"§l§0EXIT\"
cmd add z %buttons%[] = %button0%
cmd add z %buttons%[] = %button1%
cmd add z %buttons%[] = %button2%
cmd add z %buttons%[] = %button3%
cmd add z %buttons%[] = %button4%
cmd add z %buttons%[] = %button5%
cmd add z %gui%["buttons"] = %buttons%
cmd add z %response% = dialog(%player%,%gui%)
cmd add z if %response% = 0 then goto 26
cmd add z if %response% = 1 then goto 28
cmd add z if %response% = 2 then goto 30
cmd add z if %response% = 3 then goto 32
cmd add z if %response% = 4 then goto 34
cmd add z if %response% = 5 then goto 35
cmd add z exit
cmd add z /warp city
cmd add z exit
cmd add z /warp beto
cmd add z exit
cmd add z /warp factions
cmd add z exit
cmd add z /warp sumo
cmd add z exit
cmd add z /warp skyblock
cmd add z exit

LIST OF COMMANDS NUMBERED

The reason why there is a duplicate of the mad command is to help you memorize the lines better and to make it easier so you don't have to count to find out which line is which

cmd create z
1.cmd add z %player% = %p%
2.cmd add z %gui%[\"type\"] = \"form\"
3.cmd add z %gui%[\"title\"] = \"§l§5MOST POPULAR ON AOT4 FACTIONS\"
4. cmd add z %gui%[\"content\"] = \"§bWelcome to most popular list. Just click any button to continue to where you want to go!!\"
5.cmd add z %button0%[\"text\"] = \"§l§3AOT4 VILLAGE\"
6.cmd add z %button1%[\"text\"] = \"§l§4JAGASTAN\"
7.cmd add z %button2%[\"text\"] = \"§l§1FACTIONS\"
8.cmd add z %button3%[\"text\"] = \"§l§6SUMO\"
9.cmd add z %button4%["text"] = \"§l§eSKYBLOCK\"
10.cmd add z %button5%["text"] = \"§l§0EXIT\"
11.cmd add z %buttons%[] = %button0%
12.cmd add z %buttons%[] = %button1%
13.cmd add z %buttons%[] = %button2%
14.cmd add z %buttons%[] = %button3%
15.cmd add z %buttons%[] = %button4%
16.cmd add z %buttons%[] = %button5%
17.cmd add z %gui%["buttons"] = %buttons%
18.cmd add z %response% = dialog(%player%,%gui%)
19.cmd add z if %response% = 0 then goto 26
20.cmd add z if %response% = 1 then goto 28
21.cmd add z if %response% = 2 then goto 30
22.cmd add z if %response% = 3 then goto 32
23.cmd add z if %response% = 4 then goto 34
24.cmd add z if %response% = 5 then goto 35
25.cmd add z exit
26.cmd add z /warp city
27.cmd add z exit
28.cmd add z /warp beto
29.cmd add z exit
30.cmd add z /warp factions
31.cmd add z exit
32.cmd add z /warp sumo
33.cmd add z exit
34.cmd add z /warp skyblock
35.cmd add z exit
 
Last edited by a moderator: