Git Product home page Git Product logo

ogu-autobumper's Introduction

alt text

ogu-autobumper's People

Contributors

784 avatar

Stargazers

 avatar

Watchers

 avatar

ogu-autobumper's Issues

penderdrill! is this still working?

getting this error
`import time
from datetime import datetime
import random
import os

#Automatically importing external libraries that are needed for the program to run
try:
    from selenium import *
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.support import expected_conditions as EC
except ModuleNotFoundError:   
    try:
        os.system("pip install selenium")
        from selenium import *
        from selenium.webdriver.common.by import By
        from selenium.webdriver.support.ui import WebDriverWait
        from selenium.webdriver.support import expected_conditions as EC
    except ModuleNotFoundError:
        print("PIP failed to install Selenium! Make sure PIP is installed on your system.")
        time.sleep(3)
        exit()
try:
    import undetected_chromedriver as uc
except ModuleNotFoundError:
    try:
        os.system("pip install undetected_chromedriver")
        import undetected_chromedriver as uc
    except ModuleNotFoundError:
        print("PIP failed to install Undetected Chromedriver! Make sure PIP is installed on your system.")
        time.sleep(3)
        exit()

#Enter your username and password here
username = ""
password = ""

#Colours
CGREEN = '\33[92m'
BLUE = '\033[34m'
MAGENTA = '\033[35m'
WHITE = '\033[37m'

def autobump(thread, message = "Autobumped using Penderdrill's autobumper"):
    now = datetime.now()
    current_time = now.strftime("%H:%M:%S")
    driver.get(thread)
    time.sleep(5)
    thread_message = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.ID, "message"))).send_keys(f"{message} [{str(random.randint(1000, 9999))}]") 
    time.sleep(5)
    reply_button = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.ID, "quick_reply_submit"))).click()     
    print(MAGENTA + f"[{current_time}] Autobump #{str(i + 1)}")
    time.sleep(7)

#Selenium things (using undetected chromedriver so Cloudflare doesn't have a seizure)
options = uc.ChromeOptions()
options.add_argument("--disable-extensions") 
options.add_argument("--start-maximized")
driver = uc.Chrome(options=options, use_subprocess=True) 
driver.set_page_load_timeout(2000)

#Credits
print(WHITE + "-----------------------------------------------------------------------")
print(CGREEN +'''
 .d88888b.   .d8888b.  888     888 
d88P" "Y88b d88P  Y88b 888     888 
888     888 888    888 888     888 
888     888 888        888     888 
888     888 888  88888 888     888 
888     888 888    888 888     888 
Y88b. .d88P Y88b  d88P Y88b. .d88P 
 "Y88888P"   "Y8888P88  "Y88888P"                                                        
''')
print(WHITE + "-----------------------------------------------------------------------")
print(BLUE + "[-] OGU Autobumper v3")
print(BLUE + "[-] Developed by Penderdrill#0691")
print(WHITE + "-----------------------------------------------------------------------")

#Logging in
driver.get("https://ogu.gg/login")
email = WebDriverWait(driver, 60).until(EC.presence_of_element_located((By.XPATH, "/html/body/div[5]/div/form[1]/div/div[1]/div/div[2]/div/span/div[1]/span/label/input"))).send_keys(username)
password = WebDriverWait(driver, 60).until(EC.presence_of_element_located((By.XPATH, "/html/body/div[5]/div/form[1]/div/div[1]/div/div[2]/div/span/div[2]/label/input"))).send_keys(password)
button = WebDriverWait(driver, 60).until(EC.presence_of_element_located((By.XPATH, "/html/body/div[5]/div/form[1]/div/div[1]/div/div[2]/div/span/button"))).click()
time.sleep(5)

#Autobumping every 31 minutes
for i in range(100000000):
    
    """
    
    Put the threads you want to autobump below the quotation marks (MAKE SURE TO INDENT THE AUTOBUMP FUNCTION! Spacing is important in Python)
    The thread url comes first and then the message you want to be posted onto the thread
    You can autobump as many threads as you want!
    
    """

    #Examples with a custom thread message
    autobump("https://ogu.gg/Thread-NameMC-Followers-Automated-fast-and-cheap", "Autobumping!")
    autobump("https://ogu.gg/Thread-1-PER-1000-FAST-AND-CHEAP", "Buy my credits!!")
    
    #If you don't want a custom message, just put your thread link and it'll use "Autobumped using Penderdrill's autobumper" as the message
    autobump("https://ogu.gg/Thread-NameMC-Followers-Automated-fast-and-cheap")
    
    time.sleep(1860)

is it cause im running it on https://replit.com/, also can I use this on windows 11? thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.