Last active
August 29, 2015 14:10
-
-
Save jonaslsaa/d0941efc882d23a2d380 to your computer and use it in GitHub Desktop.
Fake Money Maker! Idea by MIkkel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Makes Money! | |
def rndTime(minT, maxT): | |
rnd = random.randint(minT, maxT) | |
time.sleep(rnd) | |
def rndMoney(minM, maxM): | |
rnd = random.randint(minM, maxM) | |
return rnd | |
print("Welcome to Money Maker made By Vox!") | |
print("Original idea by Mikkel!") | |
print("\nLoading...") | |
import time | |
import random | |
bitcoin_account = "77563398223453593" | |
current_money=0 | |
print("Creating external account...") | |
time.sleep(2) | |
print("Creating bitcoin account...") | |
time.sleep(1) | |
print("\n\n") | |
while True: | |
rndC = rndMoney(2, 24) | |
rndTime(1, 6) | |
current_money+=rndC | |
print("You made " + str(rndC) + " NOK") | |
print("You now have " + str(current_money) + " NOK") | |
print("\n") | |
print("\nYou made " + str(current_money) + " NOK") | |
print("\nYour money is now being converted into bitcoins...") | |
time.sleep(2) | |
print("Your money is now in a bitcoin account!") | |
print("Account ID: " + str(bitcoin_account)) | |
dummie=raw_input() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment