Enhanced SpeedCola
BO2 Modding Releases & Resources
3
Posts
3
Posters
306
Views
1
Watching
-
3000 points just for reloading faster doesn't feel entirely fair, so I made a script that slightly improves SpeedCola now when you buy it, in addition to the reload speed. You drink Perks faster, aim faster, switch weapons faster, and throw grenades faster. Hope you like it
#include maps\_utility; #include common_scripts\utility; #include maps\_zombiemode_utility; init() { level thread onPlayerConnect(); } onPlayerConnect() { for(;;) { level waittill( "connected", player ); player thread monitorSpeedColaPerks(); } } monitorSpeedColaPerks() { self endon( "disconnect" ); for(;;) { self waittill_any( "perk_acquired", "perk_lost" ); if ( self HasPerk( "specialty_fastreload" ) ) { if ( !self HasPerk( "specialty_fastads" ) ) { self SetPerk( "specialty_fastads" ); } if ( !self HasPerk( "specialty_fastweaponswitch" ) ) { self SetPerk( "specialty_fastweaponswitch" ); } if ( !self HasPerk( "specialty_fastequipmentuse" ) ) { self SetPerk( "specialty_fastequipmentuse" ); } } else { if ( self HasPerk( "specialty_fastads" ) ) { self UnsetPerk( "specialty_fastads" ); } if ( self HasPerk( "specialty_fastweaponswitch" ) ) { self UnsetPerk( "specialty_fastweaponswitch" ); } if ( self HasPerk( "specialty_fastequipmentuse" ) ) { self UnsetPerk( "specialty_fastequipmentuse" ); } } } } perk_give_override( perk ) { self SetPerk( perk ); if ( perk == "specialty_fastreload" ) { self SetPerk( "specialty_fastads" ); self SetPerk( "specialty_fastweaponswitch" ); self SetPerk( "specialty_fastequipmentuse" ); } } perk_lose_override( perk ) { self UnsetPerk( perk ); if ( perk == "specialty_fastreload" ) { self UnsetPerk( "specialty_fastads" ); self UnsetPerk( "specialty_fastweaponswitch" ); self UnsetPerk( "specialty_fastequipmentuse" ); } }
-
great work
-
Bruh this is even more busted now