I noticed in MuzzleFlash's mod he has the Mp5 (M4) ammo clip set to somthing differnt, I was woundering how to change the amount of ammo in a weapon, if anyone knows please tell me.
Also, is it possible to change how fast a weapon shoots?
Created 17 years ago2007-07-08 20:12:30 UTC by Carpocolypse300
#define MP5_MAX_CLIP 50
Change 50 to any positive integer. Then go to mp5.cpp and find:
m_flNextPrimaryAttack = UTIL_WeaponTimeBase() + 0.1;
if ( m_flNextPrimaryAttack < UTIL_WeaponTimeBase() )
m_flNextPrimaryAttack = UTIL_WeaponTimeBase() + 0.1;
0.1 is how many seconds are inbetween each shot, change it to whatever you want.