mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-11 23:57:59 -05:00
Claymore: remove initial weapon raise animation
This commit is contained in:
@ -204,6 +204,7 @@
|
|||||||
### Claymore
|
### Claymore
|
||||||
* Can be repurchased
|
* Can be repurchased
|
||||||
* Increased max amount that can be placed from 12 to 20
|
* Increased max amount that can be placed from 12 to 20
|
||||||
|
* Removed initial weapon raise animation
|
||||||
|
|
||||||
### Time Bomb
|
### Time Bomb
|
||||||
* No longer sends players back in time
|
* No longer sends players back in time
|
||||||
|
@ -111,6 +111,7 @@ main()
|
|||||||
replaceFunc(maps\mp\zombies\_zm_melee_weapon::give_melee_weapon, scripts\zm\replaced\_zm_melee_weapon::give_melee_weapon);
|
replaceFunc(maps\mp\zombies\_zm_melee_weapon::give_melee_weapon, scripts\zm\replaced\_zm_melee_weapon::give_melee_weapon);
|
||||||
replaceFunc(maps\mp\zombies\_zm_weap_ballistic_knife::watch_use_trigger, scripts\zm\replaced\_zm_weap_ballistic_knife::watch_use_trigger);
|
replaceFunc(maps\mp\zombies\_zm_weap_ballistic_knife::watch_use_trigger, scripts\zm\replaced\_zm_weap_ballistic_knife::watch_use_trigger);
|
||||||
replaceFunc(maps\mp\zombies\_zm_weap_claymore::claymore_detonation, scripts\zm\replaced\_zm_weap_claymore::claymore_detonation);
|
replaceFunc(maps\mp\zombies\_zm_weap_claymore::claymore_detonation, scripts\zm\replaced\_zm_weap_claymore::claymore_detonation);
|
||||||
|
replaceFunc(maps\mp\zombies\_zm_weap_claymore::claymore_setup, scripts\zm\replaced\_zm_weap_claymore::claymore_setup);
|
||||||
replaceFunc(maps\mp\zombies\_zm_weap_cymbal_monkey::player_handle_cymbal_monkey, scripts\zm\replaced\_zm_weap_cymbal_monkey::player_handle_cymbal_monkey);
|
replaceFunc(maps\mp\zombies\_zm_weap_cymbal_monkey::player_handle_cymbal_monkey, scripts\zm\replaced\_zm_weap_cymbal_monkey::player_handle_cymbal_monkey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,4 +139,17 @@ claymore_detonation()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
claymore_setup()
|
||||||
|
{
|
||||||
|
if ( !isdefined( self.claymores ) )
|
||||||
|
self.claymores = [];
|
||||||
|
|
||||||
|
self thread claymore_watch();
|
||||||
|
self giveweapon( "claymore_zm" );
|
||||||
|
self set_player_placeable_mine( "claymore_zm" );
|
||||||
|
self setactionslot( 4, "weapon", "claymore_zm" );
|
||||||
|
self setweaponammostock( "claymore_zm", 2 );
|
||||||
|
self seteverhadweaponall( 1 );
|
||||||
}
|
}
|
Reference in New Issue
Block a user