mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-09 23:02:53 -05:00
Added fasttoss and sprintrecovery perks
This commit is contained in:
@ -42,9 +42,11 @@
|
||||
### Speed Cola
|
||||
* Aim twice as fast
|
||||
* Switch weapons twice as fast
|
||||
* Throw grenades twice as fast
|
||||
|
||||
### Deadshot
|
||||
* Move faster while aiming
|
||||
* Decreased sprint recovery time
|
||||
|
||||
## Powerups
|
||||
|
||||
|
@ -826,20 +826,24 @@ give_additional_perks()
|
||||
{
|
||||
self SetPerk("specialty_fastads");
|
||||
self SetPerk("specialty_fastweaponswitch");
|
||||
self Setperk( "specialty_fasttoss" );
|
||||
}
|
||||
else
|
||||
{
|
||||
self UnsetPerk("specialty_fastads");
|
||||
self UnsetPerk("specialty_fastweaponswitch");
|
||||
self Unsetperk( "specialty_fasttoss" );
|
||||
}
|
||||
|
||||
if (self HasPerk("specialty_deadshot"))
|
||||
{
|
||||
self SetPerk("specialty_stalker");
|
||||
self Setperk( "specialty_sprintrecovery" );
|
||||
}
|
||||
else
|
||||
{
|
||||
self UnsetPerk("specialty_stalker");
|
||||
self Unsetperk( "specialty_sprintrecovery" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user