Roukys / HHauto

GNU General Public License v3.0
45 stars 44 forks source link

Bug [5.5.39] - Nothing works except Troll battle #350

Closed Kinnoishi closed 3 years ago

Kinnoishi commented 3 years ago

Hello, When i checked routinely in the evening for progress and if everythign works fine i had to see that everything except Troll battle stopped working. Since im not 100% sure that the issue might be Local to me i decided to post here just in case. Following u see the current state: image If this is a Problem with me alone i'd hapily take advice in fixing it. :)

Steps to reproduce the behavior: I have no clue when or what started this behaviour.

Screenshots image

System: Opera GX (vers.: LVL 3 (core: 78.0.4093.186)) Win 10 Tampermonkey HH Auto vers 5.5.39 Nutaku Version of the game

Hoping that i filled out this form correctly i hope it helps in fixing the issue or at least informing of a problem that might have happened to me localy. Thank you in advance

cossname commented 3 years ago

@Kinnoishi, upload debuglog from Debug Menu

cossname commented 3 years ago

@Kinnoishi replace

HHVariables["SH_prod"].gameID

to

HHknownEnvironnements["www.hornyheroes.com"].id 
Kinnoishi commented 3 years ago

@cossname Thank you for your quick help. This has fixed it. Closing the ticket now! (will keep in mind to attach the debuglog next time, sry)

cossname commented 3 years ago

reopen it, so @Roukys can fix it in main script

Roukys commented 3 years ago

@Kinnoishi @cossname don't know how but I've uploaded an intermediate version correcting it now in v40

cossname commented 3 years ago

@Roukys too much log events HH_DebugLog_1630751003851.log

Roukys commented 3 years ago

Pachinko yes was coded like that didn't took time to check on it

cossname commented 3 years ago

inside function "var getFreeGreatPachinko = function()" replace1

while ($('#playzone-replace-info button[free=1]')[0]===undefined && (counter++)<250)

to1

while ($('#playzone-replace-info button[free=1]')[0]===undefined && (counter++)<250 && $('.game-simple-block[type-pachinko=great][selected=selected]').length==0)

inside function "var getFreeMythicPachinko = function()" replace2

while ($('#playzone-replace-info button[free=1]')[0]===undefined && (counter++)<250)

to2

while ($('#playzone-replace-info button[free=1]')[0]===undefined && (counter++)<250 && $('.game-simple-block[type-pachinko=mythic][selected=selected]').length==0)