This commit is contained in:
INeedBots
2020-09-20 23:06:17 -06:00
parent d7807d00c3
commit 85571fa693
3 changed files with 3072 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,26 @@
init()
{
level thread onBotConnected();
}
onBotConnected()
{
for (;;)
{
level waittill("bot_connected", bot);
bot thread setBotPing();
}
}
setBotPing()
{
self endon("disconnect");
for (;;)
{
wait 0.05;
// self SetPing(randomIntRange(40, 60));
}
}