IF STRINGKEY @data.SOURCE Contains "Wrong Captcha"
BLOCK:ReportLastSolution
ENDBLOCK
data.STATUS = "RETRY";
return;
END
with this I’m facing issue if it is not found then the task is skiping the below block.
I mean if the keycheck block is under this LS block.( task is not found “wrong captcha” ) then keycheck block is skipping.
any indentation is required for this ? because it create separte blocks : LS , Reportcaptcha & LS .
like this

thank you.
This is correct, what I posted should work. The reason why it skips is because in the ELSE part I added a return; statement which basically means: disregard everything else and finish with the current status. That’s why it’s skipping. If you don’t want to skip, just remove the return.
Yes thank you…
But it is not working stable. not reporting captchas.
please try it once.
OR
in next update please add "ReportCaptcha if Retry " in KEYCHECK BLOCK.
It is very usefull.

look here 211 retries it is not reported any recaptchas in 2captcha. I seen in log.
it makes huge loss of captcha balance.
Are you 100% sure the source contains Wrong Captcha? Can you please follow this guide to see the actual bot log of the retries and see if it’s hitting the IF statement?
else can you please suggest me a code for :
If KEYCHECK is retries then it should report captcha. ( we will do it in reverse )
but here it is not stable as far I know.
I want lolliscript for If " wrong captcha " in source then it should retry and reportcaptcha else it should continue to next block.
here If I add “/” then only saving to txt. unless it is not saving.
To Database it is not saving sometimes.
keep a option in setting to access “copy data” on http.
access through HTTPS is problematic. ngork is changing domain always.
please it is a request add feature in KEYCHECK “REPORT CAPTCHA IF RETRY” ( keep by default untick . So no more consequences on that ) .
IF STRINGKEY @data.SOURCE Contains “Wrong Captcha”
BLOCK:ReportLastSolution
ENDBLOCK
data.STATUS = “RETRY”;
return;
END
here “return” is continue right ? if it is not found then it continue to next block ?.
acutually it is skipping the next blocks . randomly selects a block and runs.
In my task it skipping whatever blocks untill HTTP block arrives.
return; means STOP ALL EXECUTION it does not mean continue. To continue, you need to remove the return; as I already said.
please give me a regex to use in matchregex in keycheck.
- For all symbols.( !@#$%^&*()_+=-[]{}|;’:",./<>? ) ( include space)
- for any integers( 0 - infinity ) ( float values also )
- For any string ( lower and upper separate )
and “wait for element” will work without puppeter ?
elements on site are taking delay to load ( even I used “delay” block it is not working )
