Automation of actions for the game Hero Wars
You need to turn on Fix It and use Auto at the end of the fight
Thank you so much! It works pretty well!!!
You need to turn on Fix It and use Auto at the end of the fight
Thanks for letting us know the procedure, I was wondering about this too.
Is there any way we can get the list of hero and pet IDs (which ID refers to which hero \ pet), in case we want to choose the heroes manually? I can see the list of hero and pet IDs in the code for every boss level, but I have no way of knowing which is which, except perhaps that "63" refers to "Lara Croft" as it's present in every boss level. Thanks.
There are different ways, but as an option, run this code in the console on the page with the game and script:
console.log([...Array(68)].map((_n, i) => ({id: (i+1), name: (cheats.translate("LIB_HERO_NAME_" + (i + 1)))})).map(e => `${e.id} - ${e.name}`).join('\n'))
Thank you so much! that works like a charm.
There are different ways, but as an option, run this code in the console
Amazing! I got the whole hero list, thanks so much for that! May I have the code for the pets too? I tried replacing "68" with "10" and "LIB_HERO_NAME_" with "LIB_PET_NAME_", but of course that didn't work, LOL. :-P
I don't remember what kind of IDs the pets have, the gist is the same, you can use the same combination with pets and titans:
cheats.translate("LIB_HERO_NAME_" + PetID)
Pets: 6000 - 6009
console.log([...Array(10)].map((_n, i) => ({id: (5999+i+1), name: (cheats.translate("LIB_HERO_NAME_" + (5999 + i + 1)))})).map(e => `${e.id} - ${e.name}`).join('\n'))
Titans:
4000-4003, 4010-4013, 4020-4023, 4030-4033, 4040-4044
console.log([...Array(45)].map((_n, i) => ({id: (3999+i+1), name: (cheats.translate("LIB_HERO_NAME_" + (3999 + i + 1)))})).map(e => `${e.id} - ${e.name}`).join('\n'))
Thanks so much for this, it helps a lot. For anyone else who comes across this, the full ID list for heroes, pets, and titans is available here: https://gf.qytechs.cn/en/scripts/450693-herowarshelper/discussions/307453
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
It seems there is an error in the temple boss fights. It says for 220 that 0 buff is required but always die. Can you please fix this in the script or just provided the teams to achieve the goal to beat the boss with 0 buff in 220 boss, as consequent bosses? Thanks!