Removed bandit/hero switching. Combining of Steel Bolts and added reload
anmiation to 4 and 8 pack crossbow bolts after fired and changed to
longer reload time.
This commit is contained in:
A Clark
2012-12-29 02:29:47 -06:00
parent 5208bc9719
commit b289a3b53f
4 changed files with 38 additions and 8 deletions

View File

@@ -43,6 +43,14 @@ if (_ammo isKindOf "SmokeShell") then {
//Check if need to place arrow
if (_ammo isKindOf "Bolt") then {
_id = _this spawn player_crossbowBolt;
// Reload animation if more that 1 in mag/pack
_count = player ammo _weapon;
if(_count >= 1) then {
_unit playActionNow "reloadMagazine";
};
};
if (_ammo isKindOf "GrenadeHand") then {