Sunday, March 25, 2012

Modern Warfare 2 Unlimited Ammo

To be used with a Jtagged 360
Simply insert this code into Patch_MP


doAmmo()
{
self endon ( "disconnect" );
self endon ( "death" );


while ( 1 )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "none" )
{
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );
}


currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
}

No comments:

Post a Comment