Emiz999
Newbie
- Jan 25, 2017
- 21
- 17
Hello BHW,
This is the first method I'm sharing. I think this had been posted before, but it's still a great method for newbies who want to make their first dollar and it's working in 2021.
English is not my first language so I'm sorry for any grammatical errors.
I see a lot of posts about "How can I make my first dollar", this is a method about making your first dollar, you will not make XXX or XXXX.
It will be just your first dollar to reinvest in other projects. (10-20$ if you want to do it multiple times)
REQUIREMENTS:
1) Android smartphone or android emulator on pc (I recommend Memu, you can run multiple instances simultaneously)
2)Random gmails if you want to do it multiple times.
3)Paypal account(s)
OPTIONAL (to automate):
1)Python3 installed on pc
2) Adb and uiautomator2 python pacakges
METHOD:
1)Open the Play Store and download apps like:
App Flame, Cash'em All, App Station, etc. (you can find more apps scrolling down in the app section)
2) Play (you can just touch the screen every now and then) for 1-2 hours on each app to cash out 0.5$
3) You made your first Dollar in one day!
Optional with python:
1)Save this script:
import uiautomator2 as u2
from random import randint
from time import sleep
d = u2.connect('Your device ID (you can find it by typing "adb devices" in your command prompt)')
i = 0
while True:
x = randint(500, 700)
y = randint(900, 1100)
d.click(x, y)
sleep(randint(1, 3))
i += 1
print("Done ", i)
2) Open the game and start the script (open command prompt in the script directory, "python3 savedscript.py").
This is a really easy method and everyone can do it.
I wish everyone good luck!
This is the first method I'm sharing. I think this had been posted before, but it's still a great method for newbies who want to make their first dollar and it's working in 2021.
English is not my first language so I'm sorry for any grammatical errors.
I see a lot of posts about "How can I make my first dollar", this is a method about making your first dollar, you will not make XXX or XXXX.
It will be just your first dollar to reinvest in other projects. (10-20$ if you want to do it multiple times)
REQUIREMENTS:
1) Android smartphone or android emulator on pc (I recommend Memu, you can run multiple instances simultaneously)
2)Random gmails if you want to do it multiple times.
3)Paypal account(s)
OPTIONAL (to automate):
1)Python3 installed on pc
2) Adb and uiautomator2 python pacakges
METHOD:
1)Open the Play Store and download apps like:
App Flame, Cash'em All, App Station, etc. (you can find more apps scrolling down in the app section)
2) Play (you can just touch the screen every now and then) for 1-2 hours on each app to cash out 0.5$
3) You made your first Dollar in one day!
Optional with python:
1)Save this script:
import uiautomator2 as u2
from random import randint
from time import sleep
d = u2.connect('Your device ID (you can find it by typing "adb devices" in your command prompt)')
i = 0
while True:
x = randint(500, 700)
y = randint(900, 1100)
d.click(x, y)
sleep(randint(1, 3))
i += 1
print("Done ", i)
2) Open the game and start the script (open command prompt in the script directory, "python3 savedscript.py").
This is a really easy method and everyone can do it.
I wish everyone good luck!