chrisreyn / Tap-Titans-2-Progress-Bot

A HiroMacro Progress Bot for Tap Titans 2
14 stars 14 forks source link

Bot doesnt scroll down?? #94

Open limburgerrr opened 5 years ago

limburgerrr commented 5 years ago

Bot doesnt scroll all the way down too maya it only scrolls down ones when i go prestige..

how do i set the bot too scroll all the way down too maya?

Greetz

DaBest1Evar commented 5 years ago

I also have this problem, but the new script doesn't scroll down at all. It just opens the hero window and closes and repeats forever. I thought it was the new script but my old script does this as well... could something else have changed, like colors, maybe?

@chrisreyn

ormagoden commented 4 years ago

just a quick fix here just comment line 1631 to line 1648

but it will scroll to bottom hero all the time

so you can save your time by adding a logic like this

add var at top of file var #scrollDownLevelHeroesBool 0

then add and edit these code at line 1631

if #scrollDownToBottomHero == 0
    // scroll to bottom hero
    #scrollDownToBottomHero = 1
else
    // scroll to nearby hero
    #scrollDownToBottomHero = 0
endif

if #scrollDownLevelHeroesBool = 0 or #lateRun > 0
    //slide down
    touchDown 1 280 740
    sleep 200
    touchMove 1 280 710
    sleep 50
    touchMove 1 280 500
    sleep 50
    touchMove 1 280 410
    sleep 50
    touchMove 1 280 400
    touchUp 1

    sleep 300
    #time = #time + 650

    goto :levelHeroesPressLevelUp
endif

it will be scroll to bottom hero -> scroll to nearby hero -> scroll to bottom hero -> ...