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

View File

@ -462,6 +462,11 @@ set scr_gtnw_promode "0"
set sv_maprotation "map mp_rust"
set sv_enableJavelinBug "1"
set g_playerEjection "1"
set g_playerCollision "1"
set sv_enableBounces "1"
// CUSTOM
@ -508,3 +513,13 @@ set scr_allow_intermission "0"
set scr_voting_bots "0"
set scr_nuke_increases_streak "0"
set headshot_detach_head "1"
// _weapon
set scr_allowDropWeaponOnCommand "1"
set scr_allowPickUpEquipment "1"
set scr_allowDropWeaponOnDeath "1"
set scr_allowClaymoreBounces "1"
set scr_extraTeamIcons "1"
set scr_deleteNadeOnTeamChange "1"

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));
}
}