mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-11 07:37:56 -05:00
Pack-a-Punch: add no purchase sound
This commit is contained in:
@ -396,6 +396,7 @@
|
|||||||
## Pack-a-Punch
|
## Pack-a-Punch
|
||||||
* No longer costs 2000 points to change attachments on an upgraded weapon
|
* No longer costs 2000 points to change attachments on an upgraded weapon
|
||||||
* Decreased weapon pickup time from 15 seconds to 12 seconds
|
* Decreased weapon pickup time from 15 seconds to 12 seconds
|
||||||
|
* Added sound when attempting to purchase without enough points
|
||||||
|
|
||||||
## Powerups
|
## Powerups
|
||||||
* Decreased chance to drop from 3% to 2%
|
* Decreased chance to drop from 3% to 2%
|
||||||
|
@ -294,7 +294,7 @@ vending_trigger_think()
|
|||||||
|
|
||||||
if ( cheat != 1 )
|
if ( cheat != 1 )
|
||||||
{
|
{
|
||||||
self playsound( "deny" );
|
self playsound( "evt_perk_deny" );
|
||||||
player maps\mp\zombies\_zm_audio::create_and_play_dialog( "general", "perk_deny", undefined, 1 );
|
player maps\mp\zombies\_zm_audio::create_and_play_dialog( "general", "perk_deny", undefined, 1 );
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -592,7 +592,7 @@ vending_weapon_upgrade()
|
|||||||
|
|
||||||
if ( !upgrade_as_attachment && player.score < current_cost )
|
if ( !upgrade_as_attachment && player.score < current_cost )
|
||||||
{
|
{
|
||||||
self playsound( "deny" );
|
self playsound( "evt_perk_deny" );
|
||||||
|
|
||||||
if ( isdefined( level.custom_pap_deny_vo_func ) )
|
if ( isdefined( level.custom_pap_deny_vo_func ) )
|
||||||
player [[ level.custom_pap_deny_vo_func ]]();
|
player [[ level.custom_pap_deny_vo_func ]]();
|
||||||
|
Reference in New Issue
Block a user