mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-12 16:18:00 -05:00
Encounter: Max Ammo takes away enemy players' grenades and claymores
This commit is contained in:
@ -528,7 +528,7 @@
|
|||||||
* Decreased max height for landing on top of an enemy player by 50%
|
* Decreased max height for landing on top of an enemy player by 50%
|
||||||
* M1911 upgraded: decreased stock ammo from 50 to 24
|
* M1911 upgraded: decreased stock ammo from 50 to 24
|
||||||
* Max Ammo: decreased amount of ammo given from max stock to one clip
|
* Max Ammo: decreased amount of ammo given from max stock to one clip
|
||||||
* Max Ammo: unloads clip of all enemy players' weapons
|
* Max Ammo: unloads clip of all enemy players' weapons and takes away their grenades and claymores
|
||||||
* Double Points: decreased duration from 30 seconds to 15 seconds
|
* Double Points: decreased duration from 30 seconds to 15 seconds
|
||||||
* Double Points: enemy players gain half points
|
* Double Points: enemy players gain half points
|
||||||
* Insta Kill: decreased duration from 30 seconds to 15 seconds
|
* Insta Kill: decreased duration from 30 seconds to 15 seconds
|
||||||
|
@ -121,6 +121,10 @@ empty_clip_powerup( drop_item, player )
|
|||||||
players[i] setweaponammoclip(alt_weapon, 0);
|
players[i] setweaponammoclip(alt_weapon, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
players[i] setweaponammoclip(players[i] get_player_lethal_grenade(), 0);
|
||||||
|
players[i] setweaponammoclip(players[i] get_player_tactical_grenade(), 0);
|
||||||
|
players[i] setweaponammoclip(players[i] get_player_placeable_mine(), 0);
|
||||||
|
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user