How to skip data after check

When i got keycheck like captcha pass the data after check but how to made it ?
@Ruri

@Mert-Zengin Explain more

when keycheck “captcha” SET FAIL
i need pass the data after check again this
user1:user1 —> captcha
user2:user2: —> fail
user1:user1 —> correct
etc

if you wanna pass data to do more works on it you need use LoliCode KeyCheck That let you jump to other blocks here is example :

IF STRINGKEY @data.SOURCE Contains "SOMETHING"
JUMP #MYBLOCK
END
//here write MYBLOCK or another name (should be same name used in IF STATMENT ) before that block you wanna continue

#MYBLOCK
BLOCK:HttpRequest
  TYPE:STANDARD
  $""
  "application/x-www-form-urlencoded"
ENDBLOCK

or

IF STRINGKEY @data.STATUS EqualTo "FAIL"
JUMP #MYBLOCK
END

let me know if you have problem

1 Like