Post: Mod menu ff. toggling options
08-22-2013, 12:50 PM #1
seanhellen
Are you high?
(adsbygoogle = window.adsbygoogle || []).push({}); Hi everyone. I have started with a menu base by sneakerhead (thanks) and I am attempting my very 1st, very simple menu. I have managed to get my 1st thing on (superjump) which is fine, but I click R3 to select and it works, but then how do I make it so I can switch it off when I click the option again? At the moment it just stays on from when I click the option the 1st time. I'm assuming theres a toggle command and/or bind button_a in there somewhere, but I'm not quite sure where to put it.
I tried putting superjump on on one option, then superjump off on another option, but even that didnt work lol.

If it makes any difference, I am trying the host only jump so everyone else stays at normal jump level.
(adsbygoogle = window.adsbygoogle || []).push({});
08-22-2013, 07:56 PM #2
Originally posted by seanhellen View Post
Hi everyone. I have started with a menu base by sneakerhead (thanks) and I am attempting my very 1st, very simple menu. I have managed to get my 1st thing on (superjump) which is fine, but I click R3 to select and it works, but then how do I make it so I can switch it off when I click the option again? At the moment it just stays on from when I click the option the 1st time. I'm assuming theres a toggle command and/or bind button_a in there somewhere, but I'm not quite sure where to put it.
I tried putting superjump on on one option, then superjump off on another option, but even that didnt work lol.

If it makes any difference, I am trying the host only jump so everyone else stays at normal jump level.


yeah, change it so the code is something like "toggle jump_height 999 125" or in the on you could have "jump_height 999" then in off you could put "reset jump_height"
08-22-2013, 11:59 PM #3
seanhellen
Are you high?
Ahhh, I see, what a muppet Happy Am I right in thinking that the normal jump heigh is 39? If so I could have something like toggle jump_height 999 39 to switch back and forward? Cant think where I saw 39, but Im sure I have seen it somewhere
08-23-2013, 01:11 AM #4
Originally posted by seanhellen View Post
Hi everyone. I have started with a menu base by sneakerhead (thanks) and I am attempting my very 1st, very simple menu. I have managed to get my 1st thing on (superjump) which is fine, but I click R3 to select and it works, but then how do I make it so I can switch it off when I click the option again? At the moment it just stays on from when I click the option the 1st time. I'm assuming theres a toggle command and/or bind button_a in there somewhere, but I'm not quite sure where to put it.
I tried putting superjump on on one option, then superjump off on another option, but even that didnt work lol.

If it makes any difference, I am trying the host only jump so everyone else stays at normal jump level.


Do it like this.

set 3Sub2MenuClose "set L vstr OptionYourFunctionIsOn"
set 3Sub2Menu1 "set U vstr 3Sub2Menu2;set D vstr 3Sub2Menu2;set R3 vstr 3Sub2MenuFunc1;vstr 3Sub2MenuClose;vstr 3Sub2Menubuild1"
set 3Sub2Menu2 "set U vstr 3Sub2Menu1;set D vstr 3Sub2Menu1;set R3 vstr 3Sub2MenuFunc2;vstr 3Sub2MenuClose;vstr 3Sub2Menubuild2"
set 3Sub2Menubuild1 "vstr bf1;vstr bf13;vstr bf14;vstr bf15;vstr 4Menuopt1b;vstr bf17;vstr bf18;vstr bf19;vstr bf20;vstr bf21;vstr bf22;vstr bf23//Your Menu Build for the option goes here.
set 3Sub2Menubuild2 "vstr bf1;vstr bf13;vstr bf14;vstr bf15;vstr 4Menuopt1c;vstr bf17;vstr bf18;vstr bf19;vstr bf20;vstr bf21;vstr bf22;vstr bf23//your Menu Build for the option goes here.
set 4Menuopt1b "\""^8{ ^9Option Name ^6{^3Enabled^6} ^8}"\""
set 4Menuopt1c "\""^8{ ^9Option Name ^6{^3Disabled^6} ^8}"\""
set 3Sub2MenuFunc1 "Enabled Function"
set 3Sub2MenuFunc2 "Disabled Function"
Will make you look much more professional. my skype is carloscodhax so if you need more help, message me on there.
08-23-2013, 08:03 AM #5
seanhellen
Are you high?
thanks for that :y: but I don't have skype. So your suggesting having 2 seperate (on and off) commands rather than one to do the 2? This is what I have now, but to my mind, this would be everybody jump. Is there anything for host-only jump?

set Sm1T "\""\"^0[^2Sub Menu 1^0]
set Sm1o1 "\""\"^0Host Super Jump On
set Sm1o1a "\""\"^5Host Super Jump On
set Sm1o2 "\""\"^0Host Super Jump Off
set Sm1o2a "\""\"^5Host Super Jump Off
set Sm1o3 "\""\"^0Option 3
set Sm1o3a "\""\"^5Option 3
set Sm1o4 "\""\"^0Option 4
set Sm1o4a "\""\"^5Option 4
set Sm1o5 "\""\"^0Option 5
set Sm1o5a "\""\"^5Option 5
set Sm1o6 "\""\"^0Option 6
set Sm1o6a "\""\"^5Option 6
set Sm1o7 "\""\"^0Option 7
set Sm1o7a "\""\"^5Option 7
set Sm1o8 "\""\"^0Option 8
set Sm1o8a "\""\"^5Option 8
set Sm1o9 "\""\"^0Option 9
set Sm1o9a "\""\"^5Option 9
set Sm1o10 "\""\"^0Option 10
set Sm1o10a "\""\"^5Option 10
set Sm1o11 "\""\"^0Option 11
set Sm1o11a "\""\"^5Option 11
set Sm1f1 "set jump_height 1000"
set Sm1f2 "set jump_height 39"
set Sm1f3 "say ^6Put your funtion here"
set Sm1f4 "say ^6Put your funtion here"
set Sm1f5 "say ^6Put your funtion here"
set Sm1f6 "say ^6Put your funtion here"
set Sm1f7 "say ^6Put your funtion here"
set Sm1f8 "say ^6Put your funtion here"
set Sm1f9 "say ^6Put your funtion here"
set Sm1f10 "say ^6Put your funtion here"
set Sm1f11 "say ^6Put your funtion here"

P.s. Sorry, didnt mean to send you a pm with the quote in it - pressed the wrong button :embarrassed:
08-23-2013, 08:21 AM #6
FutureOps
Little One
Originally posted by seanhellen View Post
Ahhh, I see, what a muppet Happy Am I right in thinking that the normal jump heigh is 39? If so I could have something like toggle jump_height 999 39 to switch back and forward? Cant think where I saw 39, but Im sure I have seen it somewhere


You are right, the default variable is 39

The following user thanked FutureOps for this useful post:

exiDemonZz
08-23-2013, 08:34 AM #7
seanhellen
Are you high?
thanks. I have now tried to sort the "Super Jump Off" part - I have just tried setting the height to 39 and putting reset jump_height but it wont do anything, the jump stays :( and I thought this was going to be simple Happy

***EDIT*** Nevermind, I have managed to get the toggle thing to work on the 1 option. Don't know why it didn't like the 2 seperate options, but nevermind. Thanks all guys :y:

***EDIT 2*** Ok, I take it back. It works in private match, but in public matches, super jump hits a sort of low ceiling just above normal jump height so renders it pointless. Anyone know why this is? :(
08-23-2013, 07:54 PM #8
KadenxC28
Little One
Originally posted by seanhellen View Post
thanks. I have now tried to sort the "Super Jump Off" part - I have just tried setting the height to 39 and putting reset jump_height but it wont do anything, the jump stays :( and I thought this was going to be simple Happy

***EDIT*** Nevermind, I have managed to get the toggle thing to work on the 1 option. Don't know why it didn't like the 2 seperate options, but nevermind. Thanks all guys :y:

***EDIT 2*** Ok, I take it back. It works in private match, but in public matches, super jump hits a sort of low ceiling just above normal jump height so renders it pointless. Anyone know why this is? :(


You need to be host to edit jump height online.
08-23-2013, 08:07 PM #9
Originally posted by seanhellen View Post
thanks for that :y: but I don't have skype. So your suggesting having 2 seperate (on and off) commands rather than one to do the 2? This is what I have now, but to my mind, this would be everybody jump. Is there anything for host-only jump?

set Sm1T "\""\"^0[^2Sub Menu 1^0]
set Sm1o1 "\""\"^0Host Super Jump On
set Sm1o1a "\""\"^5Host Super Jump On
set Sm1o2 "\""\"^0Host Super Jump Off
set Sm1o2a "\""\"^5Host Super Jump Off
set Sm1o3 "\""\"^0Option 3
set Sm1o3a "\""\"^5Option 3
set Sm1o4 "\""\"^0Option 4
set Sm1o4a "\""\"^5Option 4
set Sm1o5 "\""\"^0Option 5
set Sm1o5a "\""\"^5Option 5
set Sm1o6 "\""\"^0Option 6
set Sm1o6a "\""\"^5Option 6
set Sm1o7 "\""\"^0Option 7
set Sm1o7a "\""\"^5Option 7
set Sm1o8 "\""\"^0Option 8
set Sm1o8a "\""\"^5Option 8
set Sm1o9 "\""\"^0Option 9
set Sm1o9a "\""\"^5Option 9
set Sm1o10 "\""\"^0Option 10
set Sm1o10a "\""\"^5Option 10
set Sm1o11 "\""\"^0Option 11
set Sm1o11a "\""\"^5Option 11
set Sm1f1 "set jump_height 1000"
set Sm1f2 "set jump_height 39"
set Sm1f3 "say ^6Put your funtion here"
set Sm1f4 "say ^6Put your funtion here"
set Sm1f5 "say ^6Put your funtion here"
set Sm1f6 "say ^6Put your funtion here"
set Sm1f7 "say ^6Put your funtion here"
set Sm1f8 "say ^6Put your funtion here"
set Sm1f9 "say ^6Put your funtion here"
set Sm1f10 "say ^6Put your funtion here"
set Sm1f11 "say ^6Put your funtion here"

P.s. Sorry, didnt mean to send you a pm with the quote in it - pressed the wrong button :embarrassed:


Look through my patch and see how i did my toggles. {BH} v5.5 is what it was called.
08-24-2013, 12:19 AM #10
seanhellen
Are you high?
KadenxC38 - of course...didnt think about that lol, ah well, another thing to go on my menu then Winky Winky thanks

Blackhawk2299 - thanks, I will have a look, I had faziikmodz (??) patch which looked simple enough when I tried it, but when I came to look at the coding and I just got completely lost lol

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo