Skip to content

Commit

Permalink
version 0.87
Browse files Browse the repository at this point in the history
  • Loading branch information
plastovicka committed May 21, 2020
1 parent 63d82a5 commit 02129bb
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
Binary file modified 0.83/Installer/Files/omnibot_rtcw.dll
Binary file not shown.
Binary file modified 0.83/Installer/Files/omnibot_rtcw.so
Binary file not shown.
16 changes: 16 additions & 0 deletions 0.83/Installer/Files/rtcw/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
==0.87 RTCW Change Log==

=== BOT ===
Added function GetEntEquippedWeapon
Changed trigger regions ignore players in limbo
Fixed IsStuck when bot was jumping
Fixed removing blockable waypoint flag

=== SCRIPTS ===
Added Util.CappointForFlag

=== COMMANDS ===
Changed commands sag and show_goals add role bonus to priority

---------------------------------------------------------------

==0.86 RTCW Change Log==

=== BOT ===
Expand Down
2 changes: 1 addition & 1 deletion 0.83/Omnibot/Common/IGame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ IGame::~IGame()

const char *IGame::GetVersion() const
{
return "0.86";
return "0.87.1";
}

const char *IGame::GetVersionDateTime() const
Expand Down
8 changes: 6 additions & 2 deletions 0.83/Omnibot/Common/Interprocess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ namespace InterProcess
if(pfnGetBotFuncs && pfnGetBotFuncs(&g_ClientFuncs, 1)==BOT_ERROR_NONE){
LOG("cgame drawing Initialized");
}
else {
EngineFuncs::ConsoleError(hmod ? "Cannot export drawing functions from cgame module." : "Cannot find cgame module.");
LOGERR("cgame drawing failed");
}
#ifndef WIN32
dlclose(hmod);
#endif
Expand Down Expand Up @@ -168,14 +172,14 @@ namespace InterProcess
#endif
}

#ifdef INTERPROCESS
void Enable(bool _en)
{
Enabled = _en;
if(!_en) Shutdown();
#ifdef INTERPROCESS
else Init();
#endif
}
#endif

void DrawLine(const Vector3f &_a, const Vector3f &_b, obColor _color, float _time)
{
Expand Down
10 changes: 5 additions & 5 deletions 0.83/Omnibot/projects/msvc12/Common/Common.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0, 8, 6, 0
PRODUCTVERSION 0, 8, 6, 0
FILEVERSION 0, 8, 7, 1
PRODUCTVERSION 0, 8, 7, 1
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "Omni-bot"
VALUE "FileVersion", "0.8.6.0"
VALUE "FileVersion", "0.8.7.1"
VALUE "InternalName", "Omni-bot"
VALUE "LegalCopyright", "Copyright (C) 2018"
VALUE "LegalCopyright", "Copyright (C) 2020"
VALUE "OriginalFilename", "omnibot.dll"
VALUE "ProductName", "Omni-bot"
VALUE "ProductVersion", "0.8.6.0"
VALUE "ProductVersion", "0.8.7.1"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 02129bb

Please sign in to comment.