Release 2.1.0

This commit is contained in:
ineed bots 2022-05-05 10:34:52 -06:00
parent 6755cc3b43
commit 0b50f51ed4
8 changed files with 64 additions and 38 deletions

View File

@ -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 | | bots_play_aim | If the bots can aim. | true |
## Changelog ## Changelog
- v2.0.2 - v2.1.0
- Bot chatter system, bots_main_chat
- Greatly reduce script variable usage - Greatly reduce script variable usage
- Fix bots slowly reacting in remote streaks - Fix bots slowly reacting in remote streaks
- Improved bots mantling and stuck - 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 play hidden gamemodes like one-flag and arena
- Bots do random actions while waiting at an objective - Bots do random actions while waiting at an objective
- Improved bots from getting stuck - Improved bots from getting stuck
- Bot chatter system, bots_main_chat
- Better bot difficulty management, bots_skill_min and bots_skill_max - Better bot difficulty management, bots_skill_min and bots_skill_max
- v2.0.1 - 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 - Initial reboot release
- TODOs (some required in-engine) - TODOs
- A variable leak in _menu - A variable leak in _menu (script)
- Recoil for bots - Recoil for bots (engine, maybe script)
- Use proper activate button for bombs, carepackages, etc - Use proper activate button for bombs, carepackages, etc (script, use +activate)
- Proper weapon swaps, including altmode - Proper weapon swaps, including altmode (engine, then script)
- Use static turrets in maps - Use static turrets in maps (script)
- Proper use of pred missile - Proper use of pred missile (script and engine)
- Fix testclient view angle clamping (messes with ac130 and chopper gunner) (engine)
## Credits ## Credits
- IW4x Team - https://github.com/XLabsProject/iw4x-client - IW4x Team - https://github.com/XLabsProject/iw4x-client

View File

@ -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. Bot Warfare is a GSC mod for the IW4x project.
It aims to add playable AI to the multiplayer games of Modern Warfare 2. 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. - Pressing the menu button again closes menus.
## Changelog ## 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 - v2.0.1
- Reduced bots crouching - Reduced bots crouching
- Increased bots sprinting - Increased bots sprinting
@ -46,6 +61,16 @@ You can find the GitHub containing more info at https://github.com/ineedbots/iw4
- v2.0.0 - v2.0.0
- Initial reboot release - 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 ## Credits
- IW4x Team - https://github.com/XLabsProject/iw4x-client - IW4x Team - https://github.com/XLabsProject/iw4x-client
- CoD4x Team - https://github.com/callofduty4x/CoD4x_Server - CoD4x Team - https://github.com/callofduty4x/CoD4x_Server

BIN
out/ss.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 MiB

View File

@ -1,26 +1,26 @@
a bota
b botb
c botc
d botd
e bote
f botf
g botg
h both
i boti
j botj
k botk
l botl
m botm
n botn
o boto
p botp
q botq
r botr
s bots
t bott
u botu
v botv
w botw
x botx
y boty
z botz

View File

@ -15,7 +15,7 @@
*/ */
init() init()
{ {
level.bw_VERSION = "2.0.1"; level.bw_VERSION = "2.1.0";
if ( getDvar( "bots_main" ) == "" ) if ( getDvar( "bots_main" ) == "" )
setDvar( "bots_main", true ); setDvar( "bots_main", true );

@ -1 +1 @@
Subproject commit f3dd79198df8594b1bdb273c003483e7bcfdfb46 Subproject commit 1697dbcb61d6b03a8f533e16169111e0781f39e0