mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-08 22:31:36 -05:00
16 lines
440 B
Plaintext
16 lines
440 B
Plaintext
#include maps\mp\_utility;
|
|
#include common_scripts\utility;
|
|
#include maps\mp\zombies\_zm_utility;
|
|
#include maps/mp/zombies/_zm_weap_slowgun;
|
|
|
|
watch_reset_anim_rate()
|
|
{
|
|
self set_anim_rate( 1 );
|
|
self setclientfieldtoplayer( "slowgun_fx", 0 );
|
|
while ( 1 )
|
|
{
|
|
self waittill_any( "spawned_player", "entering_last_stand", "player_revived", "player_suicide" );
|
|
self setclientfieldtoplayer( "slowgun_fx", 0 );
|
|
self set_anim_rate( 1 );
|
|
}
|
|
} |