Navigation

    OpenBullet

    OpenBullet

    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Awards
    1. Home
    2. luciole
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    luciole

    @luciole

    1
    Reputation
    51
    Posts
    56
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    luciole Follow

    Posts made by luciole

    • RE: Please enable Javascript to log in OpenBullet- How do I bypass it

      js usually generate a cookie, so try to generate that one

      posted in Questions
      luciole
    • RE: how to make ob seperate hits by balance

      Sure, you can do it with loliscript, here is an example :

      IF "<Balance>" GreaterThan "0"
      
      #write_it_into_a_file UTILITY File "yourfilename.txt" Append "*What you wanna save*\\r\\n" 
      
      ELSE
      
      #write_it_into_a_file UTILITY File "yourfilename2.txt" Append "*What you wanna save*\\r\\n" 
      
      ENDIF
      
      posted in Questions
      luciole
    • RE: I used parse to capture this but I'm getting this

      That means you parsed it wrong or it's not into the source code. If it's not into the source code it means that the issue is somewhere else

      posted in Questions
      luciole
    • Your best jojo meme ?

      I've finally finished part 5 so i'm ready to discover the jojo's meme world 😄 What's your favorite one ?

      posted in General Discussion
      luciole
    • RE: How to bypass invisible recaptcha on the website?

      You have to get the site url and key, then there's about the solvecaptcha block : https://forum.openbullet.dev/topic/902/recaptcha-block

      posted in Questions
      luciole
    • RE: Config making

      first of all it's not a config request section and you have to own the website if you want to get some help about it, and i don't think it's the case. Go talk about it somewhere else or you might get banned by the staff.

      posted in General Discussion
      luciole
    • RE: Not able to solve recaptcha with anti-captcha

      @Why001 ok, merci 🙂 !
      @Ruri ok, didn't know that, thanks.

      posted in Questions
      luciole
    • Not able to solve recaptcha with anti-captcha

      Hi, i'm using anti-captcha and i'm trying to solve this captcha: https://www.google.com/recaptcha/api2/demo
      However, it doesn't work and idk why. That's my code :

      #test_proxie REQUEST GET "https://www.google.com/recaptcha/api2/demo" 
        
        HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" 
        HEADER "Pragma: no-cache" 
        HEADER "Accept: */*" 
      
      SOLVECAPTCHA ReCaptchaV2 "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-" "https://www.google.com/recaptcha/api2/demo" 
      
      #input_captcha REQUEST POST "https://www.google.com/recaptcha/api2/demo" 
        CONTENT "g-recaptcha-response=<SOLUTION>" 
        CONTENTTYPE "application/x-www-form-urlencoded" 
        HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36" 
        HEADER "Pragma: no-cache" 
        HEADER "Accept: */*" 
      

      it still get stucked after the first request block

      posted in Questions
      luciole