This commit is contained in:
ineedbots 2021-06-19 17:47:23 -06:00
parent 90e752d1a5
commit 7154032b99
2 changed files with 20 additions and 1 deletions

Binary file not shown.

View File

@ -532,7 +532,7 @@ onPlayerConnect()
*/ */
connected() connected()
{ {
self endon( "disconnect" );
} }
/* /*
@ -541,6 +541,10 @@ connected()
added() added()
{ {
self endon( "disconnect" ); self endon( "disconnect" );
wait 2;
self notify( "menuresponse", "changeclass", "class_smg");
} }
GetHostPlayer() GetHostPlayer()
@ -548,21 +552,33 @@ GetHostPlayer()
return undefined; return undefined;
} }
/*
Waits for the host
*/
bot_wait_for_host() bot_wait_for_host()
{ {
} }
/*
Good
*/
getGoodMapAmount() getGoodMapAmount()
{ {
return 2; return 2;
} }
/*
awdawd
*/
doExtraCheck() doExtraCheck()
{ {
} }
/*
Picks random
*/
PickRandom( arr ) PickRandom( arr )
{ {
if ( !arr.size ) if ( !arr.size )
@ -571,6 +587,9 @@ PickRandom( arr )
return arr[randomInt( arr.size )]; return arr[randomInt( arr.size )];
} }
/*
Returns array of bots
*/
getBotArray() getBotArray()
{ {
answer = []; answer = [];