Automation of actions for the game Hero Wars
Just for fun can you make a sqript that can skip the totorial when creating a new account?
(I was just wondering and is not someting thats really needed)
Goodwin's script has a function to disable tutorial in the game. It would be nice if such a function appeared here as well.
Just for fun can you make a sqript that can skip the totorial when creating a new account?
(I was just wondering and is not someting thats really needed)Goodwin's script has a function to disable tutorial in the game. It would be nice if such a function appeared here as well.
I did not even now that XD but yeah that can then be a little improvement for this one
You can go through the entire tutorial using the following code in the console:
(async function () {
for(let i = 1; i < 428; i++) {
await Send({calls:[{name:"tutorialSaveProgress",args:{taskId:i},ident:"body"}]});
}
console.log('Completed');
})()
It may take a few minutes to complete.
It's better to test it on a test account first, one guy reported that he got banned for this, but this is not certain.
When you reach the level at which pets appear, you need to execute this code:
Send('{"calls":[{"name":"adventure_selectTutorialPet","args":{"petId":6001},"ident":"body"}]}').then(e => console.log(e));
Send('{"calls":[{"name":"adventure_start","args":{"adventureId":101,"private":false,"isClan":true},"ident":"group_1_body"}]}').then(e => console.log(e));
To unlock the pet.
This should also allow you to participate in the Tournament of Elements earlier than is available for the team level.
Just for fun can you make a sqript that can skip the totorial when creating a new account?
(I was just wondering and is not someting thats really needed)