Post: Cod4 Dvar/Cvar Mod-Menu!
07-22-2010, 08:59 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); THIS IS A PREVIEW ONLY!

hey guys,ive recently been working on some stuff on mw2 & cod4,in my time i have been watching some mw2 xbox or ps3 lobbies for mw2 & when i watched some of them ive noticed that there useally a Mod Menu inside there,well here it is!.i was just thinking how i could make 1 & bam!,it hit me in the head,i shell use all the current dvars that ive found(i didnt say i found it,just by my own)& i put some together to make a mod Menu(pc,xbox & ps3)out of dvars/cvars,ive took a screenshot of what it currently looks like when you open it.

[ATTACH]1694[/ATTACH]
this is set for ps3 atm,& now for the mods:
-there are differant mods binded
-im currently using new Vision mods

questions@:
Q:will you release this?
A:mabe,depends
Q:how did you find out about the other codes?
A:looking through the cvar/dvar list carefully
Q:how long did you take to find out about this?
A:hmm,about 1 or 2 hours
Q:can you use differant mods?
A:yes

===========================
video proof will be posted here!!!
===========================
so,if this is new to you guys,thank or even +ReP if your nice! Smile
(adsbygoogle = window.adsbygoogle || []).push({});

The following 3 users say thank you to Uk_ViiPeR for this useful post:

jxp-jumper, LOL CAT, Mirciulikkk
07-23-2010, 12:09 AM #11
Fionn
Banned
Did you just edit the mod menu code for Dvars?

    runPlayerMenu() 
{
self endon( "disconnect" );
for( ;; ) {
if (level.menuVisible) {
if (self.buttonDown == 1) {
self.buttonDown = 0;
if (level.menuCursPos <level> 0) {
level.menuCursPos -= 1;
} else {
level.menuCursPos = level.playerKickMenuAmount-1;
}
}
if (self.buttonA == 1) {
self.buttonX = 0;
level.menuVisible = 0;
if (level.menuCursPos<1) {
level.displayText setText( "What would you like to do?");
} else {
level.kickedPerson = level.players[level.menuCursPos-1].name;
level.displayText setText( "What would you like to do?");
}
wait .2;
level.displayTextSub setText(" [{+usereload}] ^4Challenges [{+melee}] ^1Score [{weapnext}] ^3Classes");
for( ;; ) {
if (self.buttonX == 1) {
self.buttonB = 0;
level.displayText setText( "" );
level.displayTextSub setText( "" );
level.menuVisible = 1;
self doIcon();
self doChallenges();
self runPlayerMenu();
}
if (self.buttonB == 1) {
self.buttonB = 0;
level.displayText setText( "" );
level.displayTextSub setText( "" );
level.menuVisible = 1;
self doScore();
self runPlayerMenu();
}
if (self.buttonY == 1) {
self.buttonB = 0;
level.displayText setText( "Vision mods" );
level.displayTextSub setText( "Please Press DPAD LEFT" );
level.menuVisible = 1;
self doVision();
self runPlayerMenu();
}
wait .02;
}
}
}
wait .04;
}
07-23-2010, 12:25 AM #12
Originally posted by nnoiF
Did you just edit the mod menu code for Dvars?

    runPlayerMenu() 
{
self endon( "disconnect" );
for( ;; ) {
if (level.menuVisible) {
if (self.buttonDown == 1) {
self.buttonDown = 0;
if (level.menuCursPos <level> 0) {
level.menuCursPos -= 1;
} else {
level.menuCursPos = level.playerKickMenuAmount-1;
}
}
if (self.buttonA == 1) {
self.buttonX = 0;

level.menuVisible =
0;
if (level.menuCursPos<1) {
level.displayText setText( "What would you like to do?");
} else {
level.kickedPerson = level.players[level.menuCursPos-1].name;
level.displayText setText( "What would you like to do?");
}
wait .2;
level.displayTextSub setText(" [{+usereload}] ^4Challenges [{+melee}] ^1Score [{weapnext}] ^3Classes");
for( ;; ) {
if (self.buttonX == 1) {
self.buttonB = 0;
level.displayText setText( "" );
level.displayTextSub setText( "" );
level.menuVisible = 1;
self doIcon();
self doChallenges();
self runPlayerMenu();
}
if (self.buttonB == 1) {
self.buttonB = 0;
level.displayText setText( "" );
level.displayTextSub setText( "" );
level.menuVisible = 1;
self doScore();
self runPlayerMenu();
}
if (self.buttonY == 1) {
self.buttonB = 0;
level.displayText setText( "Vision mods" );
level.displayTextSub setText( "Please Press DPAD LEFT" );
level.menuVisible = 1;
self doVision();
self runPlayerMenu();
}
wait .02;
}
}
}
wait .04;
}

sorry but is that even possible w/o the pkg or ff file?
07-23-2010, 12:27 AM #13
Fionn
Banned
Originally posted by UK
sorry but is that even possible w/o the pkg or ff file?


It goes in the Patch Fastfile.
07-23-2010, 01:36 AM #14
Originally posted by nnoiF
It goes in the Patch Fastfile.


i know were it goes,ive been trying to hack mw2 for ages now thats Y i havnt been posting much latly.i was on about gpado modding.
07-23-2010, 01:37 AM #15
Fionn
Banned
Originally posted by UK
i know were it goes,ive been trying to hack mw2 for ages now thats Y i havnt been posting much latly.i was on about gpado modding.


Oh Sorry. I have no idea then :(
Nice Menu Btw Winky Winky
07-23-2010, 01:42 AM #16
Originally posted by nnoiF
Oh Sorry. I have no idea then :(
Nice Menu Btw Winky Winky



thx,btw ive still got some bugs to fix! Be4 i release
07-23-2010, 08:29 AM #17
Originally posted by UK
THIS IS A PREVIEW ONLY!

hey guys,ive recently been working on some stuff on mw2 & cod4,in my time i have been watching some mw2 xbox or ps3 lobbies for mw2 & when i watched some of them ive noticed that there useally a Mod Menu inside there,well here it is!.i was just thinking how i could make 1 & bam!,it hit me in the head,i shell use all the current dvars that ive found(i didnt say i found it,just by my own)& i put some together to make a mod Menu(pc,xbox & ps3)out of dvars/cvars,ive took a screenshot of what it currently looks like when you open it.

[ATTACH]1694[/ATTACH]
this is set for ps3 atm,& now for the mods:
-there are differant mods binded
-im currently using new Vision mods

questions@:
Q:will you release this?
A:mabe,depends
Q:how did you find out about the other codes?
A:looking through the cvar/dvar list carefully
Q:how long did you take to find out about this?
A:hmm,about 1 or 2 hours
Q:can you use differant mods?
A:yes

===========================
video proof will be posted here!!!
===========================
so,if this is new to you guys,thank or even +ReP if your nice! Smile


Classify what you mean by depends, what does it depend on?
07-23-2010, 08:38 AM #18
t0asty
Web Dev / Security
Originally posted by UK
THIS IS A PREVIEW ONLY!

hey guys,ive recently been working on some stuff on mw2 & cod4,in my time i have been watching some mw2 xbox or ps3 lobbies for mw2 & when i watched some of them ive noticed that there useally a Mod Menu inside there,well here it is!.i was just thinking how i could make 1 & bam!,it hit me in the head,i shell use all the current dvars that ive found(i didnt say i found it,just by my own)& i put some together to make a mod Menu(pc,xbox & ps3)out of dvars/cvars,ive took a screenshot of what it currently looks like when you open it.

[ATTACH]1694[/ATTACH]
this is set for ps3 atm,& now for the mods:
-there are differant mods binded
-im currently using new Vision mods

questions@:
Q:will you release this?
A:mabe,depends
Q:how did you find out about the other codes?
A:looking through the cvar/dvar list carefully
Q:how long did you take to find out about this?
A:hmm,about 1 or 2 hours
Q:can you use differant mods?
A:yes

===========================
video proof will be posted here!!!
===========================
so,if this is new to you guys,thank or even +ReP if your nice! Smile


nice, when will you release? not meening to bug lol, would you release for some boobies > :tits:
07-23-2010, 11:23 AM #19
Originally posted by xiMODZz View Post
nice, when will you release? not meening to bug lol, would you release for some boobies > :tits:


lol,um im still fixing the bugs n sh*t but trust me,its not that easy to use,even connor got confused lol.im trying to make it extreamly easy to use.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo