Post: How to make a COD4 Mod Menu (GODLYMODZ Like)
01-07-2011, 07:53 AM #1
lallyman
Can’t trickshot me!
(adsbygoogle = window.adsbygoogle || []).push({}); SUGGEST READING THIS!!! You must login or register to view this content.

Hello....this is my first tut. Well before I do anything, I'd like to give CREDIT to FallenUndead for making the GODLYMODZ Mod Menu like thing.... and FourzerotwoFAILS for helping me understand vstr's and such. I used FallenUndead's code and edited it and got a basic idea of how he did it. NOW FOR THE TUT!!

First copy your COD4 Save Data from your PS3 and put it on a USB. Plug that into your computer and access the folders. PS3>SAVEDATA>BLUS30072-AUTO- and you should see to files called GPAD0_CM and GPAD0_MP. Open GPAD0_CM with notepad and take EVRYTHING (EVERYTHING) out of GPAD0_CM and replace it with set gpad_buttonsConfig "V". Now you can minimize that for later use. Open GPAD0_MP with notepad and now we can start coding.

Delete everything out of GPAD0_MP and put this in first
set cg_hudchatposition "250 250". set Cg_hudchatposition "310 250" for rectangle TVs. Now as FallenUndead did it starts out with bind dpad_up "vstr 1;cg_chatHeight 2;cg_chattime 50000" The cg_chatHeight is for how many Menus we are going to have in the beginning. Cg_chattime is for how many seconds the menu will stay (i.e. if you put 30000 it will stay for 30 seconds).

Next will be our first real menu. we start out with set 1a "give briefcase_bomb_mp;aim_autoaim_debug 1;cg_chattime 50000;aim_autoaim_region_width 200;r_desaturation 4;wait 300;say ^2[Admin]*;say ^5[Extra Mods]*;bind button_a vstr 1a;bind button_x vstr 2a" This basically is the base of the menu. There is a Admin menu and Extra Mods (like FallenUndead's).
The "give briefcase_bomb_mp is so when we hit UP on the DPAD it will open a SnD Bomb and give us our menu.

set 1a "cg_chatheight 5;bind button_a vstr A;bind button_y vstr B;bind button_b vstr C;bind button_x vstr D;bind button_ltrig vstr E;say ^611th Prestige*;say ^6Unlimited Cage*;say ^6Low XP*;say ^6High XP*;say ^6End Game*" This will be under 1. This is our Admin menu. It has 11th Prestige, Unlimited Cage Match, Low XP, High XP, and End Game( requires 1 kill). The cg_chatheight 5 says there are 5 mods you can chose from. I added the Low XP and End Game. bind button_a vstr A says when we hit X on the PS3 Controller, it will activate 11th Prestige because it is the first one.

set 2a "cg_chatheight 4;bind button_a vstr aA;bind button_y bB;bind button_b vstr cC;bind button_x vstr dD;say ^5Infections*;say ^5No-Clip*;say ^5Promod*;say ^5Toggle Cartoon*" This goes under 1a. This is our Extra Mods. Same as 1a.

bind Dpad_down "r_desaturation 0;take all;give deserteaglegold_mp;cg_chattime 1;aim_autoaim_debug 0;bind button_a +gostand;bind button_x +reaload;bind button_y weapprev;bind button_b gocrouch" This is the thing that I thought was AMAZING. When you want to exit your Menu, you hit DOWN on the DPAD and it will exit. You will recieve a Gold Desert Eagle. No other weapons sadly :cry:. It will return your controls to normal. Kind of.

set A "statSet 2326 11;snd_playlocal mp_level_up;^311th_Prestige Modded". Ok, Remember our first code? The 1a? Well the code in 1a "bind button_a vstr A" says when we hit X, it will active this code. Set A.

set B "scr_dm_scorelimit 0;scr_dm_timelimit 0;^3Cage_Unlimited"
Same as the others. Hit Triangle and this command activates. Im going to skip to the aA bB etc.... commands.

set aA "cg_fov 120;cg_laserForceOn 1;g_speed 999;jump_height 999;god;cg_enemyNameFadeIn 0;cg_enemyNameFadeOut 9999999;set cg_overheadNamesGlow 1 1 1 1;r_znear 40;^3Infections" Now you see it says set aA. This is in our Extra Mods. When you hit X, this command activates. You can create as many of these as you want, just the CM and the MP has to be under 1KB.

Here are the codes I edited/made.

MP:

bind Dpad_up "vstr 1;cg_chatheight 2;cg_chattime 50000"
set cg_hudchatposition "250 250"
set player_sustainammo "1"
set 1 "give briefcase_bomb_mp;aim_autoaim_debug 1;cg_chattime 50000;aim_autoaim_region_width 200;r_desaturation 4;wait 300;say ^2[Admin]*;say ^5[Extra Mods]*;bind button_a vstr 1a;bind button_x vstr 2a"
set 1a "cg_chatheight 5;bind button_a vstr A;bind button_y vstr B;bind button_b vstr C;bind button_x vstr D;bind button_ltrig vstr E;say ^611th Prestige*;say ^6Unlimited Cage*;say ^6Low XP*;say ^6High XP*;say ^6End Game*
"
set 2a "cg_chatheight 4;bind button_a vstr aA;bind button_y bB;bind button_b vstr cC;bind button_x vstr dD;say ^5Infections*;say ^5No-Clip*;say ^5Promod*;say ^5Toggle Cartoon*
"
bind Dpad_down "r_desaturation 0;take all;give deserteaglegold_mp;cg_chattime 1;aim_autoaim_debug 0;bind button_a +gostand;bind button_x +reaload;bind button_y weapprev;bind button_b gocrouch"
set A "statSet 2326 11;snd_playlocal mp_level_up;^311th_Prestige Modded"


CM
set gpad_buttonsConfig "V"
set party_host "1"
set B "scr_dm_scorelimit 0;scr_dm_timelimit 0;^3Cage_Unlimited"
set C "fast_restart;scr_xpscale 500;^3XP_Low"
set D "fast_restart;scr_xpscale 5000;^3XP_High"
set E "scr_dm_scorelimit 1;^3Game_End"
set aA "cg_fov 120;cg_laserForceOn 1;g_speed 999;jump_height 999;god;cg_enemyNameFadeIn 0;cg_enemyNameFadeOut 9999999;set cg_overheadNamesGlow 1 1 1 1;r_znear 40;^3Infections"
set bB "noclip;^3No-Clip"
set cC "cg_fov 100;cg_fovscale 1.122;^3Promod"
set dD "toggle r_debugshader 1 2 3 4 0;^3Cartoon"


I hope this helped being it my first tutorial for codes. Please +rep me if I helped in any way!!! Thanks again to FallenUndead for making this and helping me understand this complicated Menu. FourzerotwoFAILS has made very good tutorials that have helped me make Mod Menus for COD4. Tell me if I messed something up!!! Dancing
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to lallyman for this useful post:

!x-MONKEY-BOMB!, Galbiy
01-07-2011, 08:12 AM #2
thnx bro really help full thread

The following user thanked Galbiy for this useful post:

lallyman
01-07-2011, 11:41 AM #3
!x-MONKEY-BOMB!
League Champion
This is your first thread? Gasp Really really helpful dude well done. REP+
01-07-2011, 12:06 PM #4
best 1st thread ive seen +rep
01-07-2011, 12:10 PM #5
fallen undead totally copied off my menu
01-07-2011, 12:14 PM #6
lallyman
Can’t trickshot me!
:O ty guys ill try making more tuts Happy

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo