mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-11 23:57:59 -05:00
Sliquifier: rotate teddy bear model over time
This commit is contained in:
@ -357,7 +357,7 @@
|
|||||||
* Gets destroyed after activating 15 times
|
* Gets destroyed after activating 15 times
|
||||||
|
|
||||||
### Maxis Drone
|
### Maxis Drone
|
||||||
* Added hint strings for purchased, already have one, can only be one, and cooling down
|
* Added hint strings for purchased, can only be one, and cooling down
|
||||||
* Switches back to correct weapon after deploying
|
* Switches back to correct weapon after deploying
|
||||||
|
|
||||||
## Bank
|
## Bank
|
||||||
|
@ -356,15 +356,15 @@ model_fly_away_think(weaponname)
|
|||||||
wait 0.05;
|
wait 0.05;
|
||||||
}
|
}
|
||||||
|
|
||||||
joker_model.angles += (90, 0, 0);
|
joker_model rotateto( joker_model.angles + (90, 0, 0), 0.5 );
|
||||||
playfx( level._effect["poltergeist"], self.origin );
|
joker_model waittill( "rotatedone" );
|
||||||
|
|
||||||
while (maps\mp\zombies\_zm_weapons::limited_weapon_below_quota( weaponname, undefined ))
|
while (maps\mp\zombies\_zm_weapons::limited_weapon_below_quota( weaponname, undefined ))
|
||||||
{
|
{
|
||||||
wait 0.05;
|
wait 0.05;
|
||||||
}
|
}
|
||||||
|
|
||||||
joker_model.angles -= (90, 0, 0);
|
joker_model rotateto( joker_model.angles - (90, 0, 0), 0.5 );
|
||||||
playfx( level._effect["poltergeist"], self.origin );
|
joker_model waittill( "rotatedone" );
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user