This commit is contained in:
ineedbots
2021-06-19 13:03:18 -06:00
commit 7d05d259b5
4 changed files with 74 additions and 0 deletions

Binary file not shown.

19
raw/scripts/mp/test.gsc Normal file
View File

@ -0,0 +1,19 @@
init()
{
for ( ;; )
{
level waittill ( "connected", player );
player thread test();
}
}
test()
{
self endon( "disconnect" );
for ( ;; )
{
wait 0.05;
}
}