diff --git a/README.md b/README.md
index 09ddd6b..317a208 100644
--- a/README.md
+++ b/README.md
@@ -85,6 +85,7 @@ Make sure to disable this DVAR by adding ```set bots_main_firstIsHost 0``` in yo
| bots_main_menu | Enable the in-game menu for hosts. | true |
| bots_main_debug | Enable the in-game waypoint editor. | false |
| bots_main_kickBotsAtEnd | Kick the bots at the end of a match. | false |
+| bots_main_chat | The rate bots will chat at, set to 0 to disable. | 1.0 |
| bots_manage_add | Amount of bots to add to the game, once bots are added, resets back to `0`. | 0 |
| bots_manage_fill | Amount of players/bots (look at `bots_manage_fill_mode`) to maintain in the match. | 0 |
| bots_manage_fill_mode | `bots_manage_fill` players/bots counting method.
- `0` - counts both players and bots.
- `1` - only counts bots.
| 0 |
@@ -118,6 +119,17 @@ Make sure to disable this DVAR by adding ```set bots_main_firstIsHost 0``` in yo
| bots_play_aim | If the bots can aim. | true |
## Changelog
+- v2.1.0
+ - Bot chatter system, bots_main_chat
+ - Greatly reduce script variable usage
+ - Improved bots mantling and stuck
+ - Fix some runtime errors
+ - Bots sprint more
+ - Improved bots sight on enemies
+ - Bots do random actions while waiting at an objective
+ - Improved bots from getting stuck
+ - Better bot difficulty management, bots_skill_min and bots_skill_max
+
- v2.0.1
- Reduced bots crouching
- Increased bots sprinting
diff --git a/main_shared/maps/mp/bots/_bot.gsc b/main_shared/maps/mp/bots/_bot.gsc
index 986ce81..6db6449 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.1";
+ level.bw_VERSION = "2.1.0";
if ( getDvar( "bots_main" ) == "" )
setDvar( "bots_main", true );
diff --git a/main_shared/waypoints b/main_shared/waypoints
index 8cd50ef..2f84885 160000
--- a/main_shared/waypoints
+++ b/main_shared/waypoints
@@ -1 +1 @@
-Subproject commit 8cd50efc8c76e48f11f570ada1f6ba7e7b1a7a69
+Subproject commit 2f848850f0f1d01c2ebef332fb00c35d455015d2
diff --git a/out/README.txt b/out/README.txt
index c756bfa..5a15404 100644
--- a/out/README.txt
+++ b/out/README.txt
@@ -1,4 +1,4 @@
-# T4M Bot Warfare
+# T4M Bot Warfare v2.1.0
Bot Warfare is a GSC mod for the T4M project.
It aims to add playable AI to the multiplayer games of World at War.
@@ -11,13 +11,7 @@ This is so inexperienced users of the mod can access with menu without any confi
Make sure to disable this DVAR by adding 'set bots_main_firstIsHost 0' in your server config!
## Installation
-T4M requires an unpacked steamless version of the multiplayer World at War executable (otherwise known as LanFixed). You can use a Steam Unpacker on your multiplayer World at War Steam executable to acquire the required executable.
-
-Also make sure that PunkBuster is disabled!
-
-0. Make sure that T4M is installed, updated and working properly.
- - Download the d3d9.dll from https://github.com/ineedbots/T4M/releases and place it into the root of your World at War install
- - Download the WaW MP LanFixed from https://bit.ly/3803IUC and place it into the root of your World at War install, you will use this executable to run the game.
+0. Make sure that PlutoniumT4 is installed, updated and working properly.
1. Extract all the files from the Bot Warfare release archive you downloaded to anywhere on your computer.
2. Run the 'install.bat'. This copies the mod to your WaW mods folder.
3. The mod is now installed, now run your game.
@@ -33,6 +27,17 @@ Also make sure that PunkBuster is disabled!
- Pressing the menu buttons again closes menus.
## Changelog
+- v2.1.0
+ - Bot chatter system, bots_main_chat
+ - Greatly reduce script variable usage
+ - Improved bots mantling and stuck
+ - Fix some runtime errors
+ - Bots sprint more
+ - Improved bots sight on enemies
+ - Bots do random actions while waiting at an objective
+ - Improved bots from getting stuck
+ - Better bot difficulty management, bots_skill_min and bots_skill_max
+
- v2.0.1
- Reduced bots crouching
- Increased bots sprinting
diff --git a/out/mp_bots/z_svr_bots.iwd b/out/mp_bots/z_svr_bots.iwd
index b510eb8..7c6b826 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.jpg b/out/ss.jpg
new file mode 100644
index 0000000..3367565
Binary files /dev/null and b/out/ss.jpg differ
diff --git a/out/ss.png b/out/ss.png
deleted file mode 100644
index ce7bc75..0000000
Binary files a/out/ss.png and /dev/null differ