mirror of
https://github.com/ineedbots/t6_bot_warfare.git
synced 2025-04-21 17:35:42 +00:00
20 lines
169 B
Plaintext
20 lines
169 B
Plaintext
init()
|
|
{
|
|
for ( ;; )
|
|
{
|
|
level waittill ( "connected", player );
|
|
|
|
player thread test();
|
|
}
|
|
}
|
|
|
|
test()
|
|
{
|
|
self endon( "disconnect" );
|
|
|
|
for ( ;; )
|
|
{
|
|
wait 0.05;
|
|
}
|
|
}
|