mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-23 13:40:22 -05:00
Buried: add collision at Jug corner
This commit is contained in:
@ -225,6 +225,7 @@
|
|||||||
* Ghosts no longer spawn a free perk powerup if any player gets damaged by the ghosts
|
* Ghosts no longer spawn a free perk powerup if any player gets damaged by the ghosts
|
||||||
* Fountain portal automatically active
|
* Fountain portal automatically active
|
||||||
* Navcard table automatically crafted
|
* Navcard table automatically crafted
|
||||||
|
* Players can no longer get into the corner next to Juggernog
|
||||||
|
|
||||||
#### Borough
|
#### Borough
|
||||||
* Tunnels disabled
|
* Tunnels disabled
|
||||||
|
@ -6,5 +6,21 @@
|
|||||||
|
|
||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
|
precachemodel( "collision_wall_128x128x10_standard" );
|
||||||
|
|
||||||
//replaceFunc(maps/mp/zombies/_zm_equip_subwoofer::startsubwooferdecay, scripts/zm/replaced/_zm_equip_subwoofer::startsubwooferdecay);
|
//replaceFunc(maps/mp/zombies/_zm_equip_subwoofer::startsubwooferdecay, scripts/zm/replaced/_zm_equip_subwoofer::startsubwooferdecay);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
init()
|
||||||
|
{
|
||||||
|
add_jug_collision();
|
||||||
|
}
|
||||||
|
|
||||||
|
add_jug_collision()
|
||||||
|
{
|
||||||
|
origin = (-664, 1050, 8);
|
||||||
|
angles = ( 0, 0, 0 );
|
||||||
|
collision = spawn( "script_model", origin + anglesToUp(angles) * 64 );
|
||||||
|
collision.angles = angles;
|
||||||
|
collision setmodel( "collision_wall_128x128x10_standard" );
|
||||||
|
}
|
Reference in New Issue
Block a user