mirror of
https://github.com/InfinityLoader/IL-GSC.git
synced 2025-06-07 17:17:50 -05:00
32 lines
627 B
Plaintext
32 lines
627 B
Plaintext
/*******************************************************************
|
|
* Decompiled By: Bog
|
|
* Decompiled File: maps\mp\_busing.gsc
|
|
* Game: Call of Duty: Black Ops 2
|
|
* Platform: PC
|
|
* Function Count: 2
|
|
* Decompile Time: 0 ms
|
|
* Timestamp: 10/28/2023 12:10:51 AM
|
|
*******************************************************************/
|
|
|
|
#include maps/mp/_utility;
|
|
|
|
//Function Number: 1
|
|
businit()
|
|
{
|
|
/#
|
|
assert(level.clientscripts);
|
|
#/
|
|
level.busstate = "";
|
|
registerclientsys("busCmd");
|
|
}
|
|
|
|
//Function Number: 2
|
|
setbusstate(state)
|
|
{
|
|
if(level.busstate != state)
|
|
{
|
|
setclientsysstate("busCmd",state);
|
|
}
|
|
|
|
level.busstate = state;
|
|
} |