You are viewing our Forum Archives. To view or take place in current topics click here.
mod codeing
Posted:
mod codeingPosted:
Status: Offline
Joined: Apr 06, 201014Year Member
Posts: 7
Reputation Power: 0
does anyone know the code needed for unlimited ammo and all them for Mw 2 and Mw so i can edit multiplayer file doing HEX please
#2. Posted:
Status: Offline
Joined: Mar 14, 201014Year Member
Posts: 104
Reputation Power: 71
self thread doAmmo();
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;
}
}
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.