Skip to content

Commit

Permalink
Prepare v1.7.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamqqqplay committed Apr 26, 2021
1 parent 7e5c352 commit 1df0e4d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
9 changes: 8 additions & 1 deletion changelog/changelog_en.txt
Original file line number Diff line number Diff line change
Expand Up @@ -346,4 +346,11 @@ v1.7.2 (2021.04.14) Updated by AaronSong321
4. Modify ability level up mode so that reloading scripts while gaming doesn't break ability level up and item purchase;
5. Try automatically add lv 27-30 talents;
6. Modify furion's sprout not to block friend melee heroes;
7. Add better behaviour to antimage abilities;
7. Add better behaviour to antimage abilities;
v1.7.3 (2021.04.26) Updated by AaronSong321
1. Fix rune mode;
2. Add battle power evaluation of illusion;
3. Change ability building tree of Chen, Dazzle, Kotl;
4. Implement Life_stealer, Dragon_knight, Leshrac, Magnataur, Phantom_assassin;
5. Try to improve Kunkka’s x-mark combo;
6. Fix bugs in Alchemist, Bane, Kunkka;
9 changes: 8 additions & 1 deletion changelog/changelog_zh_cn.txt
Original file line number Diff line number Diff line change
Expand Up @@ -349,4 +349,11 @@ v1.7.2 (2021.04.14) Updated by AaronSong321
4. 修改技能升级模式,以便在游戏时重新加载脚本不会破坏技能升级和物品购买;
5. 尝试自动升级27-30级的天赋;
6. 先知的发芽现在不会阻挡友方米波;
7. 改进敌法师的技能使用模式;
7. 改进敌法师的技能使用模式;
v1.7.3 (2021.04.26) Updated by AaronSong321
1. 修复神符模式;
2. 增加幻象的战斗值检测;
3. 修改了这些英雄的技能构建:陈,戴泽,光之守卫;
4. 实现了这些英雄的技能使用:食尸鬼,龙骑士,老鹿,猛犸,幻影刺客;
5. 尝试改进昆卡的x标记连招;
6. 修复了炼金术士,痛苦之源和昆卡的技能使用错误;
5 changes: 4 additions & 1 deletion util/ChatSystem.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
local BotsInit = require("game/botsinit")
local M = BotsInit.CreateGeneric()

local version = "1.7.3"
local updateDate = "April 26, 2021"

local announceFlag = false
function M.SendVersionAnnouncement()
if announceFlag == false then
Expand All @@ -11,7 +14,7 @@ function M.SendVersionAnnouncement()
local npcBot = GetBot()
if (npcBot:GetPlayerID() == id) then
npcBot:ActionImmediate_Chat(
"Welcome to Ranked Matchmaking AI. The current version is 1.7.2, updated on April 14, 2021. If you have any questions or feedback, please leave message on steam workshop https://steamcommunity.com/sharedfiles/filedetails/?id=855965029 or contact [email protected]",
"Welcome to Ranked Matchmaking AI. The current version is "..version..", updated on "..updateDate..". If you have any questions or feedback, please leave message on steam workshop https://steamcommunity.com/sharedfiles/filedetails/?id=855965029 or contact [email protected]",
true
)
npcBot:ActionImmediate_Chat(
Expand Down

0 comments on commit 1df0e4d

Please sign in to comment.