mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-06-10 02:37:59 -05:00
20 lines
263 B
Plaintext
20 lines
263 B
Plaintext
#include maps/mp/_utility;
|
|
|
|
businit()
|
|
{
|
|
/#
|
|
assert( level.clientscripts );
|
|
#/
|
|
level.busstate = "";
|
|
registerclientsys( "busCmd" );
|
|
}
|
|
|
|
setbusstate( state )
|
|
{
|
|
if ( level.busstate != state )
|
|
{
|
|
setclientsysstate( "busCmd", state );
|
|
}
|
|
level.busstate = state;
|
|
}
|