Toggle Navigation
Home
Forums
All Forums
Forums
Gaming Forums
GTA V
Call Of Duty Classics
Fortnite
Upcoming Games
Popular & Classic Games
Hot & Latest
Hot Posts
Latest Posts
Latest Comments
General Forums
Announcements
General Discussion
Site & Forum Help
Introductions
Media & Designs
Games
All Games
Popular Games
Grand Theft Auto V
Call of Duty: Black Ops 3
Call of Duty: Infinite Warfa...
Grand Theft Auto 6
LEGO Star Wars: The Force Aw...
Pokemon Go
Minecraft
Latest Games
Assassin's Creed Infinity
Grand Theft Auto 6
Assassin's Creed Hexe
Star Wars Knights of the Old...
Indiana Jones
Articles
Mods
Videos
Glitches
Login / Register
Already registered?
Login
Can't login?
Reset Password
New here?
Register
Sign in with Discord
Sign in with X
Sign in with
G
o
o
g
l
e
Home
Forums
Gaming Forums
GTA V
Call Of Duty Classics
Fortnite
Upcoming Games
Popular & Classic Games
Hot & Latest
Hot Posts
Latest Posts
Latest Comments
General Forums
Announcements
General Discussion
Site & Forum Help
Introductions
Media & Designs
Games
All Games
Popular Games
Grand Theft Auto V
Call of Duty: Black Ops 3
Call of Duty: Infinite Warfa...
Grand Theft Auto 6
LEGO Star Wars: The Force Aw...
Pokemon Go
Minecraft
Latest Games
Assassin's Creed Infinity
Grand Theft Auto 6
Assassin's Creed Hexe
Star Wars Knights of the Old...
Indiana Jones
Articles
Mods
Videos
Glitches
Login / Register
Sign in
Sign in with Discord
Sign in with X
Sign in with
G
o
o
g
l
e
Can't login?
Reset Password
New here?
Register
Forums
/
Top Games
/
Call of Duty Series
/
Call of Duty 4: Modern Warfare
/
C++ codes for CoD4 Patches
Post:
C++ codes for CoD4 Patches
Like
Follow
Options
Search
Sharing
Share via Twitter
01-21-2011, 07:41 PM
#1
Fletcher
Banned
5,001
Posts
14,164
Reputation
0
Credits
Banned
Jul 2008
NextGenUpdate
(adsbygoogle = window.adsbygoogle || []).push({});
Here are some codes that you may find useful, enjoy
Rank/Prestige toggle:
doPrestige()
{
self endon ("death");
self.prestige = strTok("0|1|2|3|4|5|6|7|8|9|10|11", "|");
self maps\mp\gametypes\_persistence::statSet( "rank", 55 );
for(p=0; p<=self.prestige.size; p++)
{
self waittill( "grenade_pullback" );
self iPrintln( "Prestige "+self.prestige[p]+" - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", self.prestige[p] );
}
self doPrestige();
}
Teleport:
doTeleport()
{
self endon ( "disconnect" );
self endon ( "death" );
for(;
{
self waittill( "weapon_change" );
self beginLocationselection( "map_artillery_selector", level.artilleryDangerMaxRadius * 1.2 );
self.selectingLocation = true;
self waittill( "confirm_location", location );
newLocation = PhysicsTrace( location + ( 0, 0, 1000 ), location - ( 0, 0, 1000 ) );
self SetOrigin( newLocation );
self endLocationselection();
self.selectingLocation = undefined;
self iPrintln( "^6You Teleported !" );
}
}
Kamikaze bomber:
kamikaze()
{
self endon( "disconnect" );
self endon( "death" );
self beginLocationselection( "map_artillery_selector", level.artilleryDangerMaxRadius * 1.2 );
self.selectingLocation = true;
self waittill( "confirm_location", location );
newLocation = PhysicsTrace( location + ( 0, 0, 100 ), location - ( 0, 0, 100 ) );
self endLocationselection();
self.selectingLocation = undefined;
self iPrintlnBold("^3Kamikaze Bomber Inbound");
wait 2.5;
Kamikaze = spawn("script_model", self.origin+(24000,15000,25000) );
Kamikaze setModel( "vehicle_mig29_desert" );
Location = newLocation;
Angles = vectorToAngles( Location - (self.origin+(8000,5000,10000)));
Kamikaze.angles = Angles;
wait( 0.15 );
self thread KillEnt(Kamikaze, 4);
wait( 0.15 );
Kamikaze moveto(Location, 3.5);
wait 3.6;
Kamikaze playSound( "exp_suitcase_bomb_main" );
playFx( level._effect[ "cloud" ], Kamikaze.origin+(0,0,200));
level.chopper_fx["explode"]["medium"] = loadfx ("explosions/aerial_explosion");
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin);
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(400,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(400,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,400));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(400,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(0,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(400,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,800));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(200,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(200,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,200));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(200,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(0,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(200,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,200));
Earthquake( 0.4, 4, Kamikaze.origin, 800 );
RadiusDamage( Kamikaze.origin, 1000, 800, 1, self );
}
KillEnt( ent, time )
{
wait time;
ent delete();
}
Disco Fog:
doDisco()
{
while(1)
{
//Flashing Vision which is just fog.
SetExpFog(256, 512, 1, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 1, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.8, 0, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.2, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.4, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.2, 0.2, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0.6, 0, 0.4, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0.6, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 1, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.8, 0, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.2, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.4, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.2, 0.2, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0.6, 0, 0.4, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0.6, 1, 0.6, 0);
}
}
Stats Toggle:
doStats()
{
self endon ( "disconnect" );
self endon ( "death" );
for(;
{
self waittill("weapon_change");
self maps\mp\gametypes\_persistence::statSet( "total_hits", 2100000000 );
self maps\mp\gametypes\_persistence::statSet( "hits", 2140000000 );
self maps\mp\gametypes\_persistence::statSet( "misses", 0 );
self maps\mp\gametypes\_persistence::statSet( "accuracy", 2140000000 );
self maps\mp\gametypes\_persistence::statSet( "score", 3000000 );
self maps\mp\gametypes\_persistence::statSet( "kills", 2140000000 );
self maps\mp\gametypes\_persistence::statSet( "deaths", 0 );
self maps\mp\gametypes\_persistence::statSet( "time_played_total", 290000 );
self maps\mp\gametypes\_persistence::statSet( "kill_streak", 12000 );
self maps\mp\gametypes\_persistence::statSet( "win_streak", 12000 );
self iPrintlnBold("^5 Insane ^2Stats!");
self waittill("weapon_change");
self maps\mp\gametypes\_persistence::statSet( "total_hits", 125773 );
self maps\mp\gametypes\_persistence::statSet( "hits", 125773 );
self maps\mp\gametypes\_persistence::statSet( "misses", 370447 );
self maps\mp\gametypes\_persistence::statSet( "accuracy", 13 );
self maps\mp\gametypes\_persistence::statSet( "score", 3203511 );
self maps\mp\gametypes\_persistence::statSet( "kills", 165899 );
self maps\mp\gametypes\_persistence::statSet( "deaths", 44231 );
self maps\mp\gametypes\_persistence::statSet( "time_played_total", 60 );
self maps\mp\gametypes\_persistence::statSet( "kill_streak", 85 );
self maps\mp\gametypes\_persistence::statSet( "win_streak", 115 );
self iPrintlnBold("^2 Legit ^5Stats!");
}
}
All Unlocks:
doUnlocks()
{
self thread maps\mp\gametypes\_hud_message::hintMessage("^2Completing ^1All ^2Challenges ^1Please ^2Wait");
self.challengeData = [];
for ( i = 1; i <= level.numChallengeTiers; i++ )
{
tableName = "mp/challengetable_tier"+i+".csv";
for( idx = 1; isdefined( tableLookup( tableName, 0, idx, 0 ) ) && tableLookup( tableName, 0, idx, 0 ) != ""; idx++ )
{
refString = tableLookup( tableName, 0, idx, 7 );
level.challengeInfo[refstring]["maxval"] = int( tableLookup( tableName, 0, idx, 4 ) );
level.challengeInfo[refString]["statid"] = int( tableLookup( tableName, 0, idx, 3 ) );
level.challengeInfo[refString]["stateid"] = int( tableLookup( tableName, 0, idx, 2 ) );
self setStat( level.challengeInfo[refString]["stateid"] , 255);
self setStat( level.challengeInfo[refString]["statid"] , level.challengeInfo[refstring]["maxval"]);
wait 0.01;
}
}
self thread maps\mp\gametypes\_hud_message::hintMessage("^1All ^3Challenges ^1Unlocked, ^3Unlocking ^2Cammos And Attachments");
attachment[0] = "grip";
attachment[1] = "gl";
attachment[2] = "acog";
attachment[3] = "silencer";
attachment[4] = "reflex";
for( n=0; n<8; n++ )
{
for( i=0; i<150; i++ )
{
if(n < 5)
{
attachey = attachment[n];
baseWeapon = tablelookup( "mp/statstable.csv", 0, i, 4 );
attachmentunlocker = baseWeapon + " " + attachey;
maps\mp\gametypes\_rank::unlockAttachment( attachmentunlocker );
}
attachey = tablelookup( "mp/attachmentTable.csv", 0, n, 4 );
baseWeapon = tablelookup( "mp/statstable.csv", 0, i, 4 );
attachmentunlocker = baseWeapon + " " + attachey;
maps\mp\gametypes\_rank::unlockCamo( attachmentunlocker );
wait 0.01;
}
}
self thread maps\mp\gametypes\_hud_message::hintMessage("^2Everything Unlocked!");
}
Here is also a clean xbox patch for you to edit with:
You must
login
or
register
to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});
The following 2 users say thank you to Fletcher for this useful post:
crazyblake7
,
Lopez.
01-21-2011, 07:45 PM
#2
crazyblake7
Haxor!
33
Posts
10
Reputation
0
Credits
Member
Jan 2011
NextGenUpdate
Originally posted by Fletcher
Here are some codes that you may find useful, enjoy
Rank/Prestige toggle:
doPrestige()
{
self endon ("death");
self.prestige = strTok("0|1|2|3|4|5|6|7|8|9|10|11", "|");
self maps\mp\gametypes\_persistence::statSet( "rank", 55 );
for(p=0; p<=self.prestige.size; p++)
{
self waittill( "grenade_pullback" );
self iPrintln( "Prestige "+self.prestige[p]+" - Rank 55" );
self maps\mp\gametypes\_persistence::statSet( "plevel", self.prestige[p] );
}
self doPrestige();
}
Teleport:
doTeleport()
{
self endon ( "disconnect" );
self endon ( "death" );
for(;
{
self waittill( "weapon_change" );
self beginLocationselection( "map_artillery_selector", level.artilleryDangerMaxRadius * 1.2 );
self.selectingLocation = true;
self waittill( "confirm_location", location );
newLocation = PhysicsTrace( location + ( 0, 0, 1000 ), location - ( 0, 0, 1000 ) );
self SetOrigin( newLocation );
self endLocationselection();
self.selectingLocation = undefined;
self iPrintln( "^6You Teleported !" );
}
}
Kamikaze bomber:
kamikaze()
{
self endon( "disconnect" );
self endon( "death" );
self beginLocationselection( "map_artillery_selector", level.artilleryDangerMaxRadius * 1.2 );
self.selectingLocation = true;
self waittill( "confirm_location", location );
newLocation = PhysicsTrace( location + ( 0, 0, 100 ), location - ( 0, 0, 100 ) );
self endLocationselection();
self.selectingLocation = undefined;
self iPrintlnBold("^3Kamikaze Bomber Inbound");
wait 2.5;
Kamikaze = spawn("script_model", self.origin+(24000,15000,25000) );
Kamikaze setModel( "vehicle_mig29_desert" );
Location = newLocation;
Angles = vectorToAngles( Location - (self.origin+(8000,5000,10000)));
Kamikaze.angles = Angles;
wait( 0.15 );
self thread KillEnt(Kamikaze, 4);
wait( 0.15 );
Kamikaze moveto(Location, 3.5);
wait 3.6;
Kamikaze playSound( "exp_suitcase_bomb_main" );
playFx( level._effect[ "cloud" ], Kamikaze.origin+(0,0,200));
level.chopper_fx["explode"]["medium"] = loadfx ("explosions/aerial_explosion");
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin);
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(400,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(400,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,400));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(400,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(0,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(400,400,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,800));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(200,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(200,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,200));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(200,0,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(0,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin-(200,200,0));
playFX(level.chopper_fx["explode"]["large"], Kamikaze.origin+(0,0,200));
Earthquake( 0.4, 4, Kamikaze.origin, 800 );
RadiusDamage( Kamikaze.origin, 1000, 800, 1, self );
}
KillEnt( ent, time )
{
wait time;
ent delete();
}
Disco Fog:
doDisco()
{
while(1)
{
//Flashing Vision which is just fog.
SetExpFog(256, 512, 1, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 1, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.8, 0, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.2, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.4, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.2, 0.2, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0.6, 0, 0.4, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0.6, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 1, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.8, 0, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0.6, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.2, 1, 0.8, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.4, 1, 0);
wait .1;
SetExpFog(256, 512, 0, 0, 0, 0);
wait .1;
SetExpFog(256, 512, 0.4, 0.2, 0.2, 0);
wait .1;
SetExpFog(256, 512, 0.4, 1, 1, 0);
wait .1;
SetExpFog(256, 512, 0.6, 0, 0.4, 0);
wait .1;
SetExpFog(256, 512, 1, 0, 0.8, 0);
wait .1;
SetExpFog(256, 512, 1, 1, 0, 0);
wait .1;
SetExpFog(256, 512, 0.6, 1, 0.6, 0);
}
}
Stats Toggle:
doStats()
{
self endon ( "disconnect" );
self endon ( "death" );
for(;
{
self waittill("weapon_change");
self maps\mp\gametypes\_persistence::statSet( "total_hits", 2100000000 );
self maps\mp\gametypes\_persistence::statSet( "hits", 2140000000 );
self maps\mp\gametypes\_persistence::statSet( "misses", 0 );
self maps\mp\gametypes\_persistence::statSet( "accuracy", 2140000000 );
self maps\mp\gametypes\_persistence::statSet( "score", 3000000 );
self maps\mp\gametypes\_persistence::statSet( "kills", 2140000000 );
self maps\mp\gametypes\_persistence::statSet( "deaths", 0 );
self maps\mp\gametypes\_persistence::statSet( "time_played_total", 290000 );
self maps\mp\gametypes\_persistence::statSet( "kill_streak", 12000 );
self maps\mp\gametypes\_persistence::statSet( "win_streak", 12000 );
self iPrintlnBold("^5 Insane ^2Stats!");
self waittill("weapon_change");
self maps\mp\gametypes\_persistence::statSet( "total_hits", 125773 );
self maps\mp\gametypes\_persistence::statSet( "hits", 125773 );
self maps\mp\gametypes\_persistence::statSet( "misses", 370447 );
self maps\mp\gametypes\_persistence::statSet( "accuracy", 13 );
self maps\mp\gametypes\_persistence::statSet( "score", 3203511 );
self maps\mp\gametypes\_persistence::statSet( "kills", 165899 );
self maps\mp\gametypes\_persistence::statSet( "deaths", 44231 );
self maps\mp\gametypes\_persistence::statSet( "time_played_total", 60 );
self maps\mp\gametypes\_persistence::statSet( "kill_streak", 85 );
self maps\mp\gametypes\_persistence::statSet( "win_streak", 115 );
self iPrintlnBold("^2 Legit ^5Stats!");
}
}
All Unlocks:
doUnlocks()
{
self thread maps\mp\gametypes\_hud_message::hintMessage("^2Completing ^1All ^2Challenges ^1Please ^2Wait");
self.challengeData = [];
for ( i = 1; i <= level.numChallengeTiers; i++ )
{
tableName = "mp/challengetable_tier"+i+".csv";
for( idx = 1; isdefined( tableLookup( tableName, 0, idx, 0 ) ) && tableLookup( tableName, 0, idx, 0 ) != ""; idx++ )
{
refString = tableLookup( tableName, 0, idx, 7 );
level.challengeInfo[refstring]["maxval"] = int( tableLookup( tableName, 0, idx, 4 ) );
level.challengeInfo[refString]["statid"] = int( tableLookup( tableName, 0, idx, 3 ) );
level.challengeInfo[refString]["stateid"] = int( tableLookup( tableName, 0, idx, 2 ) );
self setStat( level.challengeInfo[refString]["stateid"] , 255);
self setStat( level.challengeInfo[refString]["statid"] , level.challengeInfo[refstring]["maxval"]);
wait 0.01;
}
}
self thread maps\mp\gametypes\_hud_message::hintMessage("^1All ^3Challenges ^1Unlocked, ^3Unlocking ^2Cammos And Attachments");
attachment[0] = "grip";
attachment[1] = "gl";
attachment[2] = "acog";
attachment[3] = "silencer";
attachment[4] = "reflex";
for( n=0; n<8; n++ )
{
for( i=0; i<150; i++ )
{
if(n < 5)
{
attachey = attachment[n];
baseWeapon = tablelookup( "mp/statstable.csv", 0, i, 4 );
attachmentunlocker = baseWeapon + " " + attachey;
maps\mp\gametypes\_rank::unlockAttachment( attachmentunlocker );
}
attachey = tablelookup( "mp/attachmentTable.csv", 0, n, 4 );
baseWeapon = tablelookup( "mp/statstable.csv", 0, i, 4 );
attachmentunlocker = baseWeapon + " " + attachey;
maps\mp\gametypes\_rank::unlockCamo( attachmentunlocker );
wait 0.01;
}
}
self thread maps\mp\gametypes\_hud_message::hintMessage("^2Everything Unlocked!");
}
Here is also a clean xbox patch for you to edit with:
You must
login
or
register
to view this content.
thanks alot man
01-21-2011, 08:37 PM
#3
Lopez.
[Insert]
3,397
Posts
8,324
Reputation
1,426
Credits
Premium
Aug 2009
NextGenUpdate
Nice this could help people make new patches.
Copyright © 2026, NextGenUpdate.
All Rights Reserved.
Website Staff
Privacy Policy
Terms of Service
Top