ineedbots 7d05d259b5 init
2021-06-19 13:03:18 -06:00

20 lines
169 B
Plaintext

init()
{
for ( ;; )
{
level waittill ( "connected", player );
player thread test();
}
}
test()
{
self endon( "disconnect" );
for ( ;; )
{
wait 0.05;
}
}