diff --git a/README.md b/README.md index 9528ff4..70555af 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,8 @@ You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfar | bots_play_aim | If the bots can aim. | true | ## Changelog -- v2.0.2 +- v2.1.0 + - Bot chatter system, bots_main_chat - Greatly reduce script variable usage - Fix bots slowly reacting in remote streaks - Improved bots mantling and stuck @@ -129,7 +130,6 @@ You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfar - Bots play hidden gamemodes like one-flag and arena - Bots do random actions while waiting at an objective - Improved bots from getting stuck - - Bot chatter system, bots_main_chat - Better bot difficulty management, bots_skill_min and bots_skill_max - v2.0.1 @@ -156,13 +156,14 @@ You can find the ModDB release post [here](https://www.moddb.com/mods/bot-warfar - Initial reboot release -- TODOs (some required in-engine) - - A variable leak in _menu - - Recoil for bots - - Use proper activate button for bombs, carepackages, etc - - Proper weapon swaps, including altmode - - Use static turrets in maps - - Proper use of pred missile +- TODOs + - A variable leak in _menu (script) + - Recoil for bots (engine, maybe script) + - Use proper activate button for bombs, carepackages, etc (script, use +activate) + - Proper weapon swaps, including altmode (engine, then script) + - Use static turrets in maps (script) + - Proper use of pred missile (script and engine) + - Fix testclient view angle clamping (messes with ac130 and chopper gunner) (engine) ## Credits - IW4x Team - https://github.com/XLabsProject/iw4x-client diff --git a/out/Move files to root of IW4x folder/mods/bots/z_svr_bots.iwd b/out/Move files to root of IW4x folder/mods/bots/z_svr_bots.iwd index 0c41df8..64ed437 100644 Binary files a/out/Move files to root of IW4x folder/mods/bots/z_svr_bots.iwd and b/out/Move files to root of IW4x folder/mods/bots/z_svr_bots.iwd differ diff --git a/out/README.txt b/out/README.txt index 35ab258..b30539b 100644 --- a/out/README.txt +++ b/out/README.txt @@ -1,4 +1,4 @@ -# IW4x Bot Warfare v2.0.0 +# IW4x Bot Warfare v2.1.0 Bot Warfare is a GSC mod for the IW4x project. It aims to add playable AI to the multiplayer games of Modern Warfare 2. @@ -23,6 +23,21 @@ You can find the GitHub containing more info at https://github.com/ineedbots/iw4 - Pressing the menu button again closes menus. ## Changelog +- v2.1.0 + - Bot chatter system, bots_main_chat + - Greatly reduce script variable usage + - Fix bots slowly reacting in remote streaks + - Improved bots mantling and stuck + - Improved bots aim + - Fix some runtime errors + - Fixed bots aim in third person + - Bots sprint more + - Improved bots sight on enemies + - Bots play hidden gamemodes like one-flag and arena + - 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 @@ -46,6 +61,16 @@ You can find the GitHub containing more info at https://github.com/ineedbots/iw4 - v2.0.0 - Initial reboot release + +- TODOs + - A variable leak in _menu (script) + - Recoil for bots (engine, maybe script) + - Use proper activate button for bombs, carepackages, etc (script, use +activate) + - Proper weapon swaps, including altmode (engine, then script) + - Use static turrets in maps (script) + - Proper use of pred missile (script and engine) + - Fix testclient view angle clamping (messes with ac130 and chopper gunner) (engine) + ## Credits - IW4x Team - https://github.com/XLabsProject/iw4x-client - CoD4x Team - https://github.com/callofduty4x/CoD4x_Server diff --git a/out/ss.jpg b/out/ss.jpg new file mode 100644 index 0000000..ad13ab3 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 26a3b46..0000000 Binary files a/out/ss.png and /dev/null differ diff --git a/userraw/bots.txt b/userraw/bots.txt index 6c3eae5..bacce26 100644 --- a/userraw/bots.txt +++ b/userraw/bots.txt @@ -1,26 +1,26 @@ -a -b -c -d -e -f -g -h -i -j -k -l -m -n -o -p -q -r -s -t -u -v -w -x -y -z \ No newline at end of file +bota +botb +botc +botd +bote +botf +botg +both +boti +botj +botk +botl +botm +botn +boto +botp +botq +botr +bots +bott +botu +botv +botw +botx +boty +botz \ No newline at end of file diff --git a/userraw/maps/mp/bots/_bot.gsc b/userraw/maps/mp/bots/_bot.gsc index 347b212..476d787 100644 --- a/userraw/maps/mp/bots/_bot.gsc +++ b/userraw/maps/mp/bots/_bot.gsc @@ -15,7 +15,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/userraw/waypoints b/userraw/waypoints index f3dd791..1697dbc 160000 --- a/userraw/waypoints +++ b/userraw/waypoints @@ -1 +1 @@ -Subproject commit f3dd79198df8594b1bdb273c003483e7bcfdfb46 +Subproject commit 1697dbcb61d6b03a8f533e16169111e0781f39e0