Skip to content

Commit

Permalink
Version 0.911 released!
Browse files Browse the repository at this point in the history
  • Loading branch information
APGRoboCop committed Dec 23, 2024
1 parent 973d837 commit 3423aae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 0 additions & 1 deletion bot.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
#include <array>
#include <cstring>
#include <cstdint>
#include <memory>
#include <string>

// stuff for Win32 vs. Linux builds
Expand Down
14 changes: 8 additions & 6 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@

--------------------------------------------------------------------------------
Version 0.911
??-??-202?
December-23-2024
Updated by RoboCop
--------------------------------------------------------------------------------

- Added Metamod-P-APG and HLSDK 25th headers for forwards compatibility

- Added versatile containers for Optional Values

- Added C++ strings and smart pointers to reduce memory leaks and buffer overflows
- Reduced buffer overflows in `spectate_debug 2`

- Added C++ arrays in the TFC Weapons make the code easier to understand and maintain

- Added C++ arrays on the TFC Weapons make the code easier to understand and maintain
- AMBuild Windows optimisation flags added by caxanga334

- DemoBots should now use their DetPacks more often

- Restructured the `BotEngineerThink()` code function for optimal performance, reliability, and maintainability

Expand All @@ -30,7 +32,7 @@ TODO List:-

>> Complete 'botdontmove' in order for "GolfBots" to stay stationary

>> Fix bots navigation when shot by enemies as they sometimes cannot seem to detect where damage is coming from
>> Fix bot's `JOB_BIN_GRENADE` as they need to ditch their live grenades to prevent suicide bombing too often

>> To prevent bots from shooting at spy corpses too long as they aren't aware that a player switched teams as enemy spy

Expand Down
2 changes: 1 addition & 1 deletion dll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ constexpr unsigned char MENU_5 = 5;
constexpr unsigned char MENU_6 = 6;
constexpr unsigned char MENU_7 = 7;

cvar_t foxbot = { "foxbot", "0.911-beta1", FCVAR_SERVER | FCVAR_UNLOGGED, 0, nullptr };
cvar_t foxbot = { "foxbot", "0.911", FCVAR_SERVER | FCVAR_UNLOGGED, 0, nullptr };
cvar_t enable_foxbot = { "enable_foxbot", "1", FCVAR_SERVER | FCVAR_UNLOGGED, 0, nullptr };
cvar_t sv_bot = { "bot", "", 0, 0, nullptr };

Expand Down
2 changes: 1 addition & 1 deletion meta_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static META_FUNCTIONS gMetaFunctionTable = {
plugin_info_t Plugin_info = {
META_INTERFACE_VERSION, // ifvers
"FoxBot", // name
"0.911-beta1", // version
"0.911", // version
__DATE__, // date
"Tom Simpson & RoboCop <[email protected]>", // author
"https://apg-clan.org/", // url
Expand Down

0 comments on commit 3423aae

Please sign in to comment.