(adsbygoogle = window.adsbygoogle || []).push({});
Hello NGU,
Today I Will post This Thread About How To Put 3 or 2 patchs into 1.Found this on a website and thought i would post it here. Lets go to the point.
Step 1 :
PHP Code:
U need to go to rank.gsc
Then on Rank u have to put a stealth bind to start off of, then have like 3 options
and init them where the patches are put.
Step 2:
add this to _rank's init as follows:
PHP Code:
init()
{
self thread monitorPatch();
}
monitorPatch()
{
self endon("patchselectiondone");
for(;
{
if(self stance()=="prone")
{
self thread patch("elitemossy");
}
if(self stance()=="crouch")
{
self thread patch("zombieland");
}
}
}
patch(patchname)
{
if(patchname == "elitemossy")
{
self maps\mp\gametypes\_missions::init();
self notify("patchselectiondone");
break;
}
if(patchname == "zombieland")
{
self maps\mp\killstreaks\airdrop::init();
self notify("patchselectiondone");
break;
}
}