Post: [Tut]: How To Make Bypass Mod Menu
01-30-2011, 06:57 AM #1
Correy
I'm the Original
(adsbygoogle = window.adsbygoogle || []).push({}); This tutorial Will Be Teaching How To Make A Call of duty 4 mod menu.
it took me a long time so i would appreciate a little respect.
Enjoy

[multipage=Contents]
Creating Your First Call Of Duty 4 Mod Menu, For Bypass.


Contents
  • - Things You Must Know.
    [1]- Starting Off.
    [2]- About The Mod Menu
    [3]- Starting To Bind
    [4]- Linking Menu Together
    [5]- Laying Out The Menu
    [6]- Summary Of Mod Menu.


    [multipage=Links]
    Links
    Basics Of Coding Thanks To Tons- You must login or register to view this content.
    Again To Tons For Single Player Mods- You must login or register to view this content.
    Thanks To FourZeroTwoFAILS for statSets- You must login or register to view this content.


    - You Must Know How To Bypass Already.
    - You Will Also Need The Knowledge Of Editing/ Creating Codes.
    - This Took Me Ages So I Should Deserve I Little Respect For This.
    - This Is Made In Mind Of Everyone Who Asked Me To Help Them Make A Mod Menu.


    [multipage=Starting Off..]
    [1]- Things You Need To Understand About Coding A Mod Menu.

    When coding a mod menu it all needs to be linked together, this means they must bind together.
    Before you start add this to GPAD0_CM
    set gpad_buttonsConfig "asdf"
    set party_connectToOthers "0"
    set party_host "1"

    Now Add This To GPAD0_MP
    set playlist "7"


    [multipage=About The Menu]
    [2]- What You Mean Bind Together ?.
    here's an example, when binding to open your menu you need to add a bind/ function to do that.
    so when exiting or swicthing menu's that all needs to be linked also.
    here's a example, to make you get the image.

    { menu 1 }, if you adding more than one menu you would do it like this, obviously though you wouldn't code it like this. this is just to try get the image into
    your head and help you understand.

    soo.. say i was going to have 3 menu's.
    it would be like this..

        Menu 1 > Menu 2 > Menu 3 > Menu 1.
    

    can you see how it's like a cercuit ?
    if you never put the bind to go back to the menu 1 it would stay at menu 3 and you therefore wouldn't be able to use the menu again. it would be stuck at that

    [multipage=Sarting To Bind]
    [3]- Now To The Actaul Coding.
    That Demonstration wich i showed you was nothing like the coding. I recomend Putting All This Into GPAD0_MP
    when coding a mod menu you need to add binds to do the following..
        - Open The Menu
    - Switch Menu's.
    - Selecting The Mod.
    -Closing The Menu.


    so when coding you need to make a certain bind, binding is doing something to make that action happen.
    to make that action to happen you would press a button.
    Here's The Button List..

        
    ==========================
    dpad Up/ bind dpad_up
    dpad right/ bind dpad_right
    dpad down/ bind dpad_down
    dpad left/ bind dpad_left
    ==========================
    L1- bind button_lshldr
    L2- bind button_ltrig
    l3- bind button_lstick

    R1- bind button_rshldr
    R2- bind button_rtrig
    R3- bind buton_rstick
    ==========================
    X- bind button_a
    []- bind button_x
    Triangle- bind button_y
    O- bind button_b
    ==========================


    so, now you got all the button's, now it's time to bind your menu.


    [multipage=Linking The Menu]
    [4]- Now You Onto The Major Part Of Your Menu, Your Going To Actually Make It.
    So, We Need To Open Our Menu, Pick Any Button from that button list, i'm going to choose bind dpad_down/ wich is dpad down.
    so, now- what you would put is \\YOUR SELECTED BUTTON// "vstr 1"
    i bet your thinking vstr 1 ?!, well this allows your menu to re-open when you die.

    So now what you want to do is underneath that put set 1. this is that vstr >1<. this shows wich bind your going to use.
    now to make the text for your menu, only put the "TEXT" into MP or as much as you can.
    anyway, this will be your set 1. im going to step ahead here to try give you another demonstration.
    this is how you would put it and what it should look like, i'll explain after..
        set 1" cg_chatheight 3;cg_hudchatposition 250 250;say [ MOD1 ]; say MOD2; say MOD3; bind button_a; bind dpad_down; bind dpad_up; bind dpad_b"
    

    you see the cg_chatheight 3;cg_hudchatposition 250 250
        cg_chatheight 3
    

    means how many lines your menu will go down, so if you have 4 menu's put 4, same with 5 ect..

    also the
        cg_hudchatposition 250 250. 
    this just means centre of your screen.


    i know i jumped a big step there but im going to explain it.
    you see were it says
        say [ MOD1 ]; say MOD2; say MOD3
    

    thats the name of your mods you will be adding into the menu.

    you see how MOD1 is highlighted. with [ ] around it. thats because thats the mod your going to be selecting.
    because the is 3 Menu's in this you will do this for each mod name, like this.
    but you would add diffrent sets.
         set 1" say [ MOD1 ]; say MOD2; say MOD3; bind button_a; bind dpad_down; bind dpad_up; bind dpad_b"
    set 2" say MOD1; say [ MOD2 ]; say MOD3; bind button_a; bind dpad_down; bind dpad_up; bind dpad_b"
    set 3" say MOD1; say MOD2; say [ MOD3 ]; bind button_a; bind dpad_down; bind dpad_up; bind dpad_b"

    like that, you see how it goes along from 1-3, thats the scrolling.

    [multipage=Layout Of the Menu]
    [5]- you'll be looking at the menu and thinking..
    bind dpad_down; bind dpad_up; bind dpad_b ?!?!?!?!
    this actually connects your menu up.
    e.g. so were bind dpad_down is, this means press down to take you to the next menu. same goes for up.
    Now This Will Confuse You A Little But Here Goes..
    when one the first menu { set 1 } you want to go to the second menu.
    you would do this by were the bind dpad_down is put "vstr 2"..

    Why vstr 2?.
    vstr 2 is the set of menu 2. so one menu 2 you would do the same to get menu 3.
    how ever when on menu 3 you would have to bind it back to menu 1. simply done, change it to vstr 1. thats for the same reason as menu 2.

    now, binding to go to previous menu..
    when on menu 1 if you press up you would go to menu 3. so all you would do is were it says bind dpad_up on Set 1 put vstr 3.

    it should look like this..
         set 1" say [ MOD1 ]; say MOD2; say MOD3; bind button_a; bind dpad_down vstr 2; bind dpad_up vstr 3; bind dpad_b"
    set 2" say MOD1; say [ MOD2 ]; say MOD3; bind button_a; bind dpad_down vstr 3; bind dpad_up vstr 1; bind dpad_b"
    set 3" say MOD1; say MOD2; say [ MOD3 ]; bind button_a; bind dpad_down vstr 1; bind dpad_up vstr 2; bind dpad_b"


    now for the Exit Of The Menu.
    you will need to bind the exit menu, i'm just going to spoon feed that because it's rather hard to explain, but in your GPAD0_CM put
        set f1 "cg_chatheight 0;bind BUTTON_A +gostand;bind DPAD_UP +actionslot 1;bind DPAD_DOWN vstr 1"
    

    this will enable you to jump again and use your buttons again without selecting a mod.

    so after you've put that into the Cm, you need to go back to your MP.
    now, were it says "bind button_b" put "vstr ex".
    that should bind it so when you press O it exit's the menu.


    [multipage=Summary Of The Menu]
    [6]- Now from the last section you'll be like what the heck is the
        "bind button_a; bind dpad_down; bind dpad_up; bind dpad_b"
    

    now just forget about that for the moment. Open up you CM.

    now you see earlier you binded the text, now you going to be binding the Mods.
    here's an example..
        set a "god"
    

    now i've just added the simple bind, god mode.
    you see how thats an "a", every binding has a diffrent set.

    so, go back to your GPAD0_MP.
    now back to the
        bind button_a; bind dpad_down; bind dpad_up; bind dpad_b
    

    you see were it says the..
        bind button_a
    

    that means X, and X is going to be my button to select the mod.

    so now were that button_a is i would put
        vstr a
    
    .
    so now when i press this this will give me god mode..

    now go alll the way back to the say, and because we just binded menu 1, change the "MOD1" to "GodMode".
    this will tell you that if you press it it will give you god mode.

    now, it's really simple adding them for MOD 2 & MOD 3. just do the same as we done with the God Mode but add your selected mode and remeber to change the set.

    that's it really, after you've added your codes and mods it shoud look something like this, im guna make this up so don't try copy and paste.
    it's just fake codes for show use only, but the "God" isn't ha.
    this is what it should look like.

    GPAD0_MP
    set playlist "7"
    set 1" cg_chatheight 3;cg_hudchatposition 250 250;say [ NAMEOFMOD]; say nameofmod; say nameofmod; bind button_a vstr a; bind dpad_down; bind dpad_up; bind dpad_b vstr ex"
    set 2" say nameofmod; say [ NMEOFMOD ]; say nameofmod; bind button_a vstr b; bind dpad_down vstr 3; bind dpad_up vstr 1; bind dpad_b vstr ex"
    set 3" say MOD1; say MOD2; say [ NAMEOFMOD ]; bind button_a vstr c; bind dpad_down vstr 1; bind dpad_up vstr 2; bind dpad_b vstr ex"


    GPAD_CM

    set gpad_buttonsConfig "asdf"
    set party_connectToOthers "0"
    set party_host "1"
    set a" MY MOD 1"
    set b" MY MOD 2"
    set c" MY MOD 3"
    set ex"cg_chatheight 0;bind BUTTON_A +gostand;bind DPAD_UP +actionslot 1;bind DPAD_DOWN vstr 1;



    Well It's 06:52 am, i started This Post at 02:13am, so yeah. thats how much effort i put into this, i tryed to put in as much detail as posible, Night NGU !
    Going For Sticky ?
    [/SIZE]

    This Better Of Help Lol !
    Last edited by Correy ; 02-05-2011 at 01:41 AM.

    The following 15 users say thank you to Correy for this useful post:

    -Google-, -SprayzZz-, .Mitch, Bang Tidy, crazy_blake7, davidalis, FM|T xR3PMz, Galbiy, iReset Nigga, IVIaGiiC_IVIoDs, Rebecca Black, Smiithy67, tylerallmighty, yaro
    01-30-2011, 07:25 AM #2
    CLM
    [b]They say sorry Mr. West is..[/b]
    Pretty good I'll try tomorrow. You should put this in several pages though to make it neater.
    01-30-2011, 07:27 AM #3
    Correy
    I'm the Original
    Originally posted by ClutchLikeMelo View Post
    Pretty good I'll try tomorrow. You should put this in several pages though to make it neater.


    i wanted to add tbale of content but i dont know how to :(
    01-30-2011, 05:08 PM #4
    CLM
    [b]They say sorry Mr. West is..[/b]
    Originally posted by xCorrey
    i wanted to add tbale of content but i dont know how to :(


    This is how [multipage=ENTER PAGE NAME HERE]
    01-30-2011, 05:14 PM #5
    Correy
    I'm the Original
    Originally posted by ClutchLikeMelo View Post
    This is how [multipage=ENTER PAGE NAME HERE]


    is that all, i just put that yeah ?
    01-30-2011, 05:25 PM #6
    CLM
    [b]They say sorry Mr. West is..[/b]
    Originally posted by xCorrey
    is that all, i just put that yeah ?


    Yeah for every page just put that at the beginning
    01-30-2011, 05:44 PM #7
    Correy
    I'm the Original
    Originally posted by ClutchLikeMelo View Post
    Yeah for every page just put that at the beginning


    done it =D, it looks miles neater..
    01-30-2011, 05:46 PM #8
    CLM
    [b]They say sorry Mr. West is..[/b]
    Originally posted by xCorrey
    done it =D, it looks miles neater..


    Good job :y:
    01-31-2011, 03:20 PM #9
    yaro
    I defeated!
    looking nice Smile, ahaha thanks
    01-31-2011, 04:16 PM #10
    Correy
    I'm the Original
    Originally posted by yaro View Post
    looking nice Smile, ahaha thanks


    Your Welcome, Thanks For The Quote.

    Copyright © 2024, NextGenUpdate.
    All Rights Reserved.

    Gray NextGenUpdate Logo