OP 20 December, 2019 - 01:37 AM
This method uses a website where you type what 3 digits you see and earn 10 cents by every ad.
However, to make it even simpler, I developed a python program that will do all the effort for you
Let me show you some easy steps:
1. Register an account at https://lcusmoney.xyz/4619225585280/ (email confirmation not required)
2. Run the program.
3. Withdraw using PayPal, credit card or many other options
4. Start a referral link and send it to friends or family
5. That's about it, read their FAQ if you have more questions, but to be honest, it's quite simple to understand, once you get started.
INSTALL PYTHON AND SELENIUM with CHROMEDRIVER for you chrome version
(I use VS Code, others compilers such as PyCharm should work as well)
Right now, I will even upload PYTHON program to do all that stuff for you = NO CLICKING
LET IT RUN AUTOMATICALLY AND EARN
However, to make it even simpler, I developed a python program that will do all the effort for you

Let me show you some easy steps:

1. Register an account at https://lcusmoney.xyz/4619225585280/ (email confirmation not required)
2. Run the program.
3. Withdraw using PayPal, credit card or many other options
4. Start a referral link and send it to friends or family
5. That's about it, read their FAQ if you have more questions, but to be honest, it's quite simple to understand, once you get started.
INSTALL PYTHON AND SELENIUM with CHROMEDRIVER for you chrome version
(I use VS Code, others compilers such as PyCharm should work as well)
Right now, I will even upload PYTHON program to do all that stuff for you = NO CLICKING

LET IT RUN AUTOMATICALLY AND EARN
Code:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
chromeDriver = 'location of the chromedriver.exe'
browser = webdriver.Chrome(chromeDriver)
browser.get('https://lcusmoney.xyz/login.php')
print("Current Page Title is : %s" %browser.title)
username_box = browser.find_element_by_name('username')
# Send username
username_box.send_keys('your username')
pass_box = browser.find_element_by_name('password')
# Send password
pass_box.send_keys('your password')
browser.execute_script('dologin1()')
time.sleep(2)
browser.execute_script('doarea(2)')
time.sleep(2)
def earn10():
for i in range(1500):
images = browser.find_elements_by_xpath("//img[contains(@src,'images/capchs')]")
text_area = browser.find_element_by_xpath("//input[contains(@name,'capcha')]")
for image in images:
src = image.get_attribute('src')
num = src[-5]
text_area.send_keys(num)
browser.execute_script('dosub()')
time.sleep(0.5)
#Here we make some money, let it SNOOOW
earn10()