uploading 119 patch_mp scripts and 23 patch_zm scripts as a baseline

This commit is contained in:
JezuzLizard
2020-05-29 07:55:47 -07:00
parent b044bba3c2
commit 89fa02ab7f
144 changed files with 75534 additions and 0 deletions

View File

@ -0,0 +1,19 @@
#include maps/mp/_utility;
businit()
{
/#
assert( level.clientscripts );
#/
level.busstate = "";
registerclientsys( "busCmd" );
}
setbusstate( state )
{
if ( level.busstate != state )
{
setclientsysstate( "busCmd", state );
}
level.busstate = state;
}