My Gui Menu
Xodlike
Join Date: 2003-06-03 Member: 16985Members
<div class="IPBDescription">help me out</div> this is only a clip that i have, i have alot more but im sure the problem lies somewhere here and its that the third menu which is supposed to be RCON is under my FUN stuff menu
[QUOTE]
"5" "Fun Stuff"
{
"1" "Gravity" "echo the less the gravity the higher u fly -99-99999;Messagemode sv_gravity"
"2" "Matrix Mode" "sv_airaccelerate -15"
"3" "Normal mode "say Normal Mode;sv_gravity 800;sv_airaccelerate 10"
}
}
"3" "Server Options (rcon)"
{
"1" "timelimit"
"1" "Off" "rcon mp_timelimit 0"
"2" "20 minutes" "rcon mp_timelimit 20"
"3" "30 minutes" "rcon mp_timelimit 30"
"4" "40 minutes" "rcon mp_timelimit 40"
"5" "60 minutes" "rcon mp_timelimit 60"
"6" "80 minutes" "rcon mp_timelimit 80"
"7" "120 minutes" "rcon mp_timelimit 120"
}
"2" "Friendly Fire"
{
"1" "On" "rcon mp_friendlyfire 1"
"2" "Off" "rcon mp_friendlyfire 0"
}
[QUOTE]
"5" "Fun Stuff"
{
"1" "Gravity" "echo the less the gravity the higher u fly -99-99999;Messagemode sv_gravity"
"2" "Matrix Mode" "sv_airaccelerate -15"
"3" "Normal mode "say Normal Mode;sv_gravity 800;sv_airaccelerate 10"
}
}
"3" "Server Options (rcon)"
{
"1" "timelimit"
"1" "Off" "rcon mp_timelimit 0"
"2" "20 minutes" "rcon mp_timelimit 20"
"3" "30 minutes" "rcon mp_timelimit 30"
"4" "40 minutes" "rcon mp_timelimit 40"
"5" "60 minutes" "rcon mp_timelimit 60"
"6" "80 minutes" "rcon mp_timelimit 80"
"7" "120 minutes" "rcon mp_timelimit 120"
}
"2" "Friendly Fire"
{
"1" "On" "rcon mp_friendlyfire 1"
"2" "Off" "rcon mp_friendlyfire 0"
}
Comments
You have too many curly brackets after fun stuff. You just need one.
{
"1" "Gravity" "echo the less the gravity the higher u fly -99-99999;Messagemode sv_gravity"
"2" "Matrix Mode" "sv_airaccelerate -15"
"3" "Normal mode "say Normal Mode;sv_gravity 800;sv_airaccelerate 10"
}
} <---- that's the error...
"3" "Server Options (rcon)"
{
"1" "timelimit"
"1" "Off" "rcon mp_timelimit 0"
"2" "20 minutes" "rcon mp_timelimit 20"
"3" "30 minutes" "rcon mp_timelimit 30"
"4" "40 minutes" "rcon mp_timelimit 40"
"5" "60 minutes" "rcon mp_timelimit 60"
"6" "80 minutes" "rcon mp_timelimit 80"
"7" "120 minutes" "rcon mp_timelimit 120"
}
"2" "Friendly Fire"
{
"1" "On" "rcon mp_friendlyfire 1"
"2" "Off" "rcon mp_friendlyfire 0"
}