mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-06-08 01:47:50 -05:00
23 lines
380 B
Plaintext
23 lines
380 B
Plaintext
//checked includes match cerberus output
|
|
#include maps/mp/_utility;
|
|
|
|
businit() //checked matches cerberus output
|
|
{
|
|
/*
|
|
/#
|
|
assert( level.clientscripts );
|
|
#/
|
|
*/
|
|
level.busstate = "";
|
|
registerclientsys( "busCmd" );
|
|
}
|
|
|
|
setbusstate( state ) //checked matches cerberus output
|
|
{
|
|
if ( level.busstate != state )
|
|
{
|
|
setclientsysstate( "busCmd", state );
|
|
}
|
|
level.busstate = state;
|
|
}
|