diff --git a/README.md b/README.md index 139692e..60bf1b8 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,22 @@ Also make sure that PunkBuster is disabled! - bots_main_debug - a boolean value (0 or 1), enables or disables the waypoint editor ## Changelog +- v2.0.1 + - Reduced bots crouching + - Increased bots sprinting + - Improved bots mantling, crouching and knifing glass when needed + - Fixed possible script runtime errors + - Improved domination + - Bots use explosives more if they have it + - Bots aim slower when ads'ing + - Fixed bots holding breath + - Fixed bots rubberbanding movement when their goal changes + - Added bots quickscoping with snipers + - Added bots reload canceling and fast swaps + - Bots use C4 + - Improved revenge + - Bots can swap weapons on spawn more likely + - v2.0.0 - Initial reboot release diff --git a/main_shared/bots.txt b/main_shared/bots.txt index 6f81b57..6c3eae5 100644 --- a/main_shared/bots.txt +++ b/main_shared/bots.txt @@ -1,4 +1,4 @@ -a +a b c d diff --git a/main_shared/maps/mp/bots/_bot.gsc b/main_shared/maps/mp/bots/_bot.gsc index ec3969b..66a64bd 100644 --- a/main_shared/maps/mp/bots/_bot.gsc +++ b/main_shared/maps/mp/bots/_bot.gsc @@ -8,7 +8,7 @@ */ init() { - level.bw_VERSION = "2.0.0"; + level.bw_VERSION = "2.0.1"; if(getDvar("bots_main") == "") setDvar("bots_main", true); diff --git a/main_shared/waypoints b/main_shared/waypoints index ea1300d..f005fd7 160000 --- a/main_shared/waypoints +++ b/main_shared/waypoints @@ -1 +1 @@ -Subproject commit ea1300da2576e7380dc966bb398a106c37250318 +Subproject commit f005fd75d70089eb2bbb2133eadbaae4e17889e1 diff --git a/out/README.txt b/out/README.txt index b435329..c756bfa 100644 --- a/out/README.txt +++ b/out/README.txt @@ -33,6 +33,22 @@ Also make sure that PunkBuster is disabled! - Pressing the menu buttons again closes menus. ## Changelog +- v2.0.1 + - Reduced bots crouching + - Increased bots sprinting + - Improved bots mantling, crouching and knifing glass when needed + - Fixed possible script runtime errors + - Improved domination + - Bots use explosives more if they have it + - Bots aim slower when ads'ing + - Fixed bots holding breath + - Fixed bots rubberbanding movement when their goal changes + - Added bots quickscoping with snipers + - Added bots reload canceling and fast swaps + - Bots use C4 + - Improved revenge + - Bots can swap weapons on spawn more likely + - v2.0.0 - Initial reboot release diff --git a/out/mp_bots/z_svr_bots.iwd b/out/mp_bots/z_svr_bots.iwd index 01cd5fe..b510eb8 100644 Binary files a/out/mp_bots/z_svr_bots.iwd and b/out/mp_bots/z_svr_bots.iwd differ diff --git a/out/ss.png b/out/ss.png index 20b7dd0..ce7bc75 100644 Binary files a/out/ss.png and b/out/ss.png differ