mirror of
https://github.com/ineedbots/t4_bot_warfare.git
synced 2025-04-19 23:12:52 +00:00
version 2.1.0
This commit is contained in:
parent
edd674fdbe
commit
14b161b3ed
12
README.md
12
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_menu | Enable the in-game menu for hosts. | true |
|
||||||
| bots_main_debug | Enable the in-game waypoint editor. | false |
|
| 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_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_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 | 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.<ul><li>`0` - counts both players and bots.</li><li>`1` - only counts bots.</li></ul> | 0 |
|
| bots_manage_fill_mode | `bots_manage_fill` players/bots counting method.<ul><li>`0` - counts both players and bots.</li><li>`1` - only counts bots.</li></ul> | 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 |
|
| bots_play_aim | If the bots can aim. | true |
|
||||||
|
|
||||||
## Changelog
|
## 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
|
- v2.0.1
|
||||||
- Reduced bots crouching
|
- Reduced bots crouching
|
||||||
- Increased bots sprinting
|
- Increased bots sprinting
|
||||||
|
@ -8,7 +8,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 8cd50efc8c76e48f11f570ada1f6ba7e7b1a7a69
|
Subproject commit 2f848850f0f1d01c2ebef332fb00c35d455015d2
|
@ -1,4 +1,4 @@
|
|||||||
# T4M Bot Warfare
|
# T4M Bot Warfare v2.1.0
|
||||||
Bot Warfare is a GSC mod for the T4M project.
|
Bot Warfare is a GSC mod for the T4M project.
|
||||||
|
|
||||||
It aims to add playable AI to the multiplayer games of World at War.
|
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!
|
Make sure to disable this DVAR by adding 'set bots_main_firstIsHost 0' in your server config!
|
||||||
|
|
||||||
## Installation
|
## 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.
|
0. Make sure that PlutoniumT4 is installed, updated and working properly.
|
||||||
|
|
||||||
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.
|
|
||||||
1. Extract all the files from the Bot Warfare release archive you downloaded to anywhere on your computer.
|
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.
|
2. Run the 'install.bat'. This copies the mod to your WaW mods folder.
|
||||||
3. The mod is now installed, now run your game.
|
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.
|
- Pressing the menu buttons again closes menus.
|
||||||
|
|
||||||
## Changelog
|
## 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
|
- v2.0.1
|
||||||
- Reduced bots crouching
|
- Reduced bots crouching
|
||||||
- Increased bots sprinting
|
- Increased bots sprinting
|
||||||
|
Binary file not shown.
BIN
out/ss.jpg
Normal file
BIN
out/ss.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
BIN
out/ss.png
BIN
out/ss.png
Binary file not shown.
Before Width: | Height: | Size: 3.7 MiB |
Loading…
x
Reference in New Issue
Block a user