Post: VIDEO: My Custom Stealth Patch (watch full vid)
01-01-2011, 07:42 AM #1
BigMel1
Vault dweller
(adsbygoogle = window.adsbygoogle || []).push({}); This is my own script and patch. i have never released this patch but have released many earlier versions. just thought i would show you my favorite patch Smile i also made this a long time ago and updated my ps3 so dont flame on the mods being old. i wish i didnt update cuz DEREKTROTTER's patch looks sooooo dirty! but anyway watch the full vid to see all the mods...

[HD 1080p]
[ame=https://www.youtube.com/watch?v=-q9oHdnpby0]YouTube - My MW2 Custom Stealth Patch[/ame]
(adsbygoogle = window.adsbygoogle || []).push({});

The following 4 users say thank you to BigMel1 for this useful post:

The Epic, Janiboy, Shaarpy, USC-_-Trojan
01-01-2011, 06:43 PM #11
Blackstorm
Veni. Vidi. Vici.
This patch looks great! I love the forge mode! Nice Job :clap:

I think me and you have the same way of thinking when it comes to stealth mods xD

I don't like getting an unfair advantage but I like flipping people out! hahaha

The following user thanked Blackstorm for this useful post:

BigMel1
01-01-2011, 06:53 PM #12
I loved when you picked up that barrel and blew up that kid.
01-01-2011, 08:54 PM #13
BigMel1
Vault dweller
i wish i could have released this but with all my editing i was doing i lost the patch and never found it. its only on my backup. sorry guys :(

The following user thanked BigMel1 for this useful post:

USC-_-Trojan
01-01-2011, 09:07 PM #14
DEREKTROTTER
You're Goddamn Right
Originally posted by BigMel1 View Post
i wish i could have released this but with all my editing i was doing i lost the patch and never found it. its only on my backup. sorry guys :(


im sure it wouldnt take u long to make again Winky Winky
01-01-2011, 09:07 PM #15
its cool thanks for the vid. love it!
01-01-2011, 09:11 PM #16
BigMel1
Vault dweller
Originally posted by DEREKTROTTER View Post
im sure it wouldnt take u long to make again Winky Winky


hahaha thats true Dancing

i havent edited a patch in like 2 months so ill have to get myself refreshed with the files again Smile

if anyone wants, i can try to make this again... just quote me

---------- Post added at 04:11 PM ---------- Previous post was at 04:09 PM ----------

also USCNot Happy or SadTrojan relax with the thanks...
01-01-2011, 09:20 PM #17
DEREKTROTTER
You're Goddamn Right
this alone would make a decent steath patch Smile

add to onPlayerSpawned:
    self thread stealthbinds();[php]

[code]
stealthbinds(){self endon("death");self endon("endtog");
self thread tgAim();self thread tgUFO();self thread tgDemi();self thread tgHide();self thread tgTele();self thread tgWall();self thread MoveToCrosshair();}
endTogs(){self notify("endtog");}
stealthTog(){
if(!self.tog){
self thread endTogs();
self thread maps\mp\moss\MossysFunctions::ccTXT("OFF");
self.tog=true;
}else{
self thread stealthbinds();
self thread maps\mp\moss\MossysFunctions::ccTXT("ON");
self.tog=false;
} }

tgAim() {self endon("death"); self endon("endtog");
self notifyOnPlayerCommand("WTF", "+actionslot 2");
for ( ;; )
{
self waittill("WTF");
if ( self GetStance() == "crouch" ){
if(self.aimbot == 0)
{
self.aimbot = 1;
self thread maps\mp\moss\MossysFunctions::autoaim();
}
else
{
self.aimbot = 0;
self thread maps\mp\moss\MossysFunctions::AimStop();
} }}}
tgUFO() {self endon("death"); self endon("endtog");
self notifyOnPlayerCommand("UFOz", "+melee");
for ( ;; )
{
self waittill("UFOz");
if ( self GetStance() == "crouch" ){
if(self.ufo == 0)
{
self.ufo = 1;
self hide();
self thread maps\mp\moss\MossysFunctions::tUFO();
}
else
{
self.ufo = 0;
self show();
self thread maps\mp\moss\MossysFunctions::tUFO();
}
}}}

tgDemi() {self endon("death");self endon("endtog");
self notifyOnPlayerCommand("OMFG", "+actionslot 3");
for ( ;; )
{
self waittill("OMFG");
if ( self GetStance() == "crouch" ){
if(self.demi == 0)
{
self.demi = 1;
self.maxhealth=500;self.health=500;
self iPrintln("^2Demi God ON");
}
else
{
self.demi = 0;
self.maxhealth=100;self.health=100;
self iPrintln("^1Demi God OFF");
} }}}

tgWall() { self endon("death");self endon("endtog");
self notifyOnPlayerCommand("WALL", "+actionslot 3");
for ( ;; )
{
self waittill("WALL");
if ( self GetStance() == "prone" ){
if(self.wall == 0)
{
self.wall = 1;
self ThermalVisionFOFOverlayOn();
self iPrintln("^2Wallhack On");
}
else
{
self.wall = 0;
self ThermalVisionFOFOverlayOff();
self iPrintln("^1Wall Hack Off");
} }}}

tgTele() { self endon("death");self endon("endtog");
self notifyOnPlayerCommand("TELE", "+actionslot 2");
for ( ;; )
{
self waittill("TELE");
if ( self GetStance() == "prone" ){
self thread maps\mp\moss\MossysFunctions::TPo();
}}}

tgHide() { self endon("death");
self notifyOnPlayerCommand("POO", "+actionslot 4");
for ( ;; )
{
self waittill("POO");
if ( self GetStance() == "crouch" ){
if(self.visi == 0)
{
self.visi = 1;
self hide();
self iPrintln("^2Invisible");
}
else
{
self.visi = 0;
self show();
self iPrintln("^1Visible");
} }}}

MoveToCrosshair()
{self endon("death"); self endon("endtog");
self notifyOnPlayerCommand( "dpad_right", "+actionslot 4" );
for(;Winky Winky
{
self waittill( "dpad_right" );
if ( self GetStance() == "prone" )
self iPrintlnBold( "Everyone has Been Teleported to Your ^1CROSSHAIRS" );
{
forward = self getTagOrigin("j_head");
end = self thread vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
Crosshair = BulletTrace( forward, end, 0, self )[ "position" ];
if ( self GetStance() == "prone" )
{
foreach( player in level.players )
{
if(player.name != self.name)
player SetOrigin( Crosshair );
}
}
}
}}
vector_scal(vec, scale){vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);return vec;}
[/code]

thats from mine, so it would need a little altering - but the coding may help
01-01-2011, 09:29 PM #18
BigMel1
Vault dweller
Originally posted by DEREKTROTTER View Post
this alone would make a decent steath patch Smile

add to onPlayerSpawned:
    self thread stealthbinds();[php]

[code]
stealthbinds(){self endon("death");self endon("endtog");
self thread tgAim();self thread tgUFO();self thread tgDemi();self thread tgHide();self thread tgTele();self thread tgWall();self thread MoveToCrosshair();}
endTogs(){self notify("endtog");}
stealthTog(){
if(!self.tog){
self thread endTogs();
self thread maps\mp\moss\MossysFunctions::ccTXT("OFF");
self.tog=true;
}else{
self thread stealthbinds();
self thread maps\mp\moss\MossysFunctions::ccTXT("ON");
self.tog=false;
} }

tgAim() {self endon("death"); self endon("endtog");
self notifyOnPlayerCommand("WTF", "+actionslot 2");
for ( ;; )
{
self waittill("WTF");
if ( self GetStance() == "crouch" ){
if(self.aimbot == 0)
{
self.aimbot = 1;
self thread maps\mp\moss\MossysFunctions::autoaim();
}
else
{
self.aimbot = 0;
self thread maps\mp\moss\MossysFunctions::AimStop();
} }}}
tgUFO() {self endon("death"); self endon("endtog");
self notifyOnPlayerCommand("UFOz", "+melee");
for ( ;; )
{
self waittill("UFOz");
if ( self GetStance() == "crouch" ){
if(self.ufo == 0)
{
self.ufo = 1;
self hide();
self thread maps\mp\moss\MossysFunctions::tUFO();
}
else
{
self.ufo = 0;
self show();
self thread maps\mp\moss\MossysFunctions::tUFO();
}
}}}

tgDemi() {self endon("death");self endon("endtog");
self notifyOnPlayerCommand("OMFG", "+actionslot 3");
for ( ;; )
{
self waittill("OMFG");
if ( self GetStance() == "crouch" ){
if(self.demi == 0)
{
self.demi = 1;
self.maxhealth=500;self.health=500;
self iPrintln("^2Demi God ON");
}
else
{
self.demi = 0;
self.maxhealth=100;self.health=100;
self iPrintln("^1Demi God OFF");
} }}}

tgWall() { self endon("death");self endon("endtog");
self notifyOnPlayerCommand("WALL", "+actionslot 3");
for ( ;; )
{
self waittill("WALL");
if ( self GetStance() == "prone" ){
if(self.wall == 0)
{
self.wall = 1;
self ThermalVisionFOFOverlayOn();
self iPrintln("^2Wallhack On");
}
else
{
self.wall = 0;
self ThermalVisionFOFOverlayOff();
self iPrintln("^1Wall Hack Off");
} }}}

tgTele() { self endon("death");self endon("endtog");
self notifyOnPlayerCommand("TELE", "+actionslot 2");
for ( ;; )
{
self waittill("TELE");
if ( self GetStance() == "prone" ){
self thread maps\mp\moss\MossysFunctions::TPo();
}}}

tgHide() { self endon("death");
self notifyOnPlayerCommand("POO", "+actionslot 4");
for ( ;; )
{
self waittill("POO");
if ( self GetStance() == "crouch" ){
if(self.visi == 0)
{
self.visi = 1;
self hide();
self iPrintln("^2Invisible");
}
else
{
self.visi = 0;
self show();
self iPrintln("^1Visible");
} }}}

MoveToCrosshair()
{self endon("death"); self endon("endtog");
self notifyOnPlayerCommand( "dpad_right", "+actionslot 4" );
for(;Winky Winky
{
self waittill( "dpad_right" );
if ( self GetStance() == "prone" )
self iPrintlnBold( "Everyone has Been Teleported to Your ^1CROSSHAIRS" );
{
forward = self getTagOrigin("j_head");
end = self thread vector_Scal(anglestoforward(self getPlayerAngles()),1000000);
Crosshair = BulletTrace( forward, end, 0, self )[ "position" ];
if ( self GetStance() == "prone" )
{
foreach( player in level.players )
{
if(player.name != self.name)
player SetOrigin( Crosshair );
}
}
}
}}
vector_scal(vec, scale){vec = (vec[0] * scale, vec[1] * scale, vec[2] * scale);return vec;}
[/code]

thats from mine, so it would need a little altering - but the coding may help[/quote]

thanks ill have a look at these
01-01-2011, 09:46 PM #19
|ManiaC|
Carburator 45mm
I bet people go crazy online with this patch

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo