Post: Custom Rets?
04-08-2011, 12:06 AM #1
iGir :D
Bounty hunter
(adsbygoogle = window.adsbygoogle || []).push({}); Would It Be Possible To Put Custom Reticles (Crosshairs) On Mw2?
(adsbygoogle = window.adsbygoogle || []).push({});
04-08-2011, 12:52 AM #2
iGir :D
Bounty hunter
Originally posted by southpaw
Rets? Not sure what that is. :/


Reticles. Its Just Another Name For Crosshairs. Sorry
04-08-2011, 12:58 AM #3
Originally posted by iGir
Reticles. Its Just Another Name For Crosshairs. Sorry



Yes there is a code for that, if you would like I can post it! It only includes some emblems and a few more.... You can add any emblem btw. It was made by DaftVader and perfected by EliteMossy :p


Getting code, wait upOutie
This is EliteMossy's Private Patch which might not work in most patches.
    CustomSights(){if(self.WantsSights){self.WantsSights=0;PrintTXT("Custom Sights","Disabled");self notify("StopCustomSights");}else{self endon("disconnect");self endon("death");self endon("StopCustomSights");self.WantsSights=1;PrintTXT("Custom Sights","Enabled");if(!isDefined(self.SightIcon)){self.SightIcon=createIcon(level.CSL[self.PCS],25,25);self.SightIcon setPoint("CENTER","CENTER",0,0);self.SightIcon.alpha=0;}for(;Winky Winky{wait .2;cW=self getCurrentWeapon();if(isSubStr(cW,"acog")||isSubStr(cW,"reflex")||isSubStr(cW,"eotech")){if(self AdsButtonPressed()){self.SightIcon setShader(level.CSL[self.PCS],25,25);self.SightIcon.shader=level.CSL[self.PCS];self.SightIcon.alpha=0.55;}else{self.SightIcon.alpha=0;}}else{self.SightIcon.alpha=0;}}}}
I'll Get Dafts original one that doesn't work very well but works in almost all patches in a minute.


HERE add more if you would like to.

    CS()
{
if(self.WantsSights)
{
self.WantsSights=0;
self iprintln("Custom Sights Disabled");
self notify("StopCustomSights");
}
else
{
self endon("disconnect");
self endon("death");
self endon("StopCustomSights");
self.WantsSights=1;
self iprintln("Custom Sights Enabled");
if(!isDefined(self.SightIcon))
{
self.SightIcon=createIcon(level.CSL[self.PCS],25,25);
self.SightIcon setPoint("CENTER","CENTER",0,0);
self.SightIcon.alpha=0;
}
for(;Winky Winky
{
wait .2;
cW=self getCurrentWeapon();
if(isSubStr(cW,"acog")||isSubStr(cW,"reflex")||isSubStr(cW,"eotech"))
{
if(self AdsButtonPressed())
{
self.SightIcon setShader(level.CSL[self.PCS],25,25);
self.SightIcon.shader=level.CSL[self.PCS];
self.SightIcon.alpha=0.75;
}
else
{
self.SightIcon.alpha=0;
}
}
else
{
self.SightIcon.alpha=0;
}
}
}
}

TCS()
{
self.PCS++;
if(self.PCS>=level.CSL.size)self.PCS=0;
self iprintln("Picked Sight: "+level.CSL[self.PCS]);
}

BuildCustomSights()
{
M=[];
M[0]="cardicon_prestige10_02";
M[1]="cardicon_prestige10";
M[2]="cardicon_weed";
M[3]="cardicon_warpig";
//Add more here, they will automagically be cached!
for(i=0;i<M.size;i++) precacheShader(M[i]);
level.CSL=M;
}

The following user thanked Ninja for this useful post:

iGir :D
04-08-2011, 01:15 AM #4
iGir :D
Bounty hunter
Originally posted by Ninja View Post
Yes there is a code for that, if you would like I can post it! It only includes some emblems and a few more.... You can add any emblem btw. It was made by DaftVader and perfected by EliteMossy :p


Getting code, wait upOutie
This is EliteMossy's Private Patch which might not work in most patches.
    CustomSights(){if(self.WantsSights){self.WantsSights=0;PrintTXT("Custom Sights","Disabled");self notify("StopCustomSights");}else{self endon("disconnect");self endon("death");self endon("StopCustomSights");self.WantsSights=1;PrintTXT("Custom Sights","Enabled");if(!isDefined(self.SightIcon)){self.SightIcon=createIcon(level.CSL[self.PCS],25,25);self.SightIcon setPoint("CENTER","CENTER",0,0);self.SightIcon.alpha=0;}for(;Winky Winky{wait .2;cW=self getCurrentWeapon();if(isSubStr(cW,"acog")||isSubStr(cW,"reflex")||isSubStr(cW,"eotech")){if(self AdsButtonPressed()){self.SightIcon setShader(level.CSL[self.PCS],25,25);self.SightIcon.shader=level.CSL[self.PCS];self.SightIcon.alpha=0.55;}else{self.SightIcon.alpha=0;}}else{self.SightIcon.alpha=0;}}}}
I'll Get Dafts original one that doesn't work very well but works in almost all patches in a minute.


HERE add more if you would like to.

    CS()
{
if(self.WantsSights)
{
self.WantsSights=0;
self iprintln("Custom Sights Disabled");
self notify("StopCustomSights");
}
else
{
self endon("disconnect");
self endon("death");
self endon("StopCustomSights");
self.WantsSights=1;
self iprintln("Custom Sights Enabled");
if(!isDefined(self.SightIcon))
{
self.SightIcon=createIcon(level.CSL[self.PCS],25,25);
self.SightIcon setPoint("CENTER","CENTER",0,0);
self.SightIcon.alpha=0;
}
for(;Winky Winky
{
wait .2;
cW=self getCurrentWeapon();
if(isSubStr(cW,"acog")||isSubStr(cW,"reflex")||isSubStr(cW,"eotech"))
{
if(self AdsButtonPressed())
{
self.SightIcon setShader(level.CSL[self.PCS],25,25);
self.SightIcon.shader=level.CSL[self.PCS];
self.SightIcon.alpha=0.75;
}
else
{
self.SightIcon.alpha=0;
}
}
else
{
self.SightIcon.alpha=0;
}
}
}
}

TCS()
{
self.PCS++;
if(self.PCS>=level.CSL.size)self.PCS=0;
self iprintln("Picked Sight: "+level.CSL[self.PCS]);
}

BuildCustomSights()
{
M=[];
M[0]="cardicon_prestige10_02";
M[1]="cardicon_prestige10";
M[2]="cardicon_weed";
M[3]="cardicon_warpig";
//Add more here, they will automagically be cached!
for(i=0;i<M.size;i++) precacheShader(M[i]);
level.CSL=M;
}


No, No, No, No, No. I Know You Can Make Your Crosshairs An Emblem. But I Have These Certain Rets I Would Like To Use. And I Think They Would Look Pretty Awesome On Mw2.



You must login or register to view this content.
I Got Em From L: O
04-08-2011, 01:23 AM #5
Originally posted by iGir
No, No, No, No, No. I Know You Can Make Your Crosshairs An Emblem. But I Have These Certain Rets I Would Like To Use. And I Think They Would Look Pretty Awesome On Mw2.



You must login or register to view this content.
I Got Em From L: O



Then no... You can only use objects from the game. Maybe, but doubtful if you can change the skins on PC MW2 that might work. But nothing else on console. I hope this answered our question .:whistle:

The following user thanked Ninja for this useful post:

iGir :D
04-08-2011, 01:25 AM #6
iGir :D
Bounty hunter
Originally posted by Ninja View Post
Then no... You can only use objects from the game. Maybe, but doubtful if you can change the skins on PC MW2 that might work. But nothing else on console. I hope this answered our question .:whistle:



Mkay Ty For The Replies. +Rep! Claps

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo