Weapon:GetActivity
Description
Returns the sequence enumeration number that the weapon is playing.
Returns
Example
This will return the ACT_ENUM that is currently active for the weapon.
local wep = Entity(1):GetActiveWeapon()
if ( IsValid( wep ) ) then // Makes sure that wep exists
print( wep:GetActivity() ) // Prints the sequence number
end