1
General Discussion / Re: DX7+Blood effects+Veiled helm=SCARY AS HELL
« on: February 18, 2011, 07:49:13 am »
BECAUSE THEY KNOW THE THINGS YOU'VE DONE
-->
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
# Hi forums!
a = raw_input("Gold or XP?")
if a == "xp":
b = input("How much xp until next level?")
c = input("How much xp do you have?")
d = input("1000, 2000, 3000, 4000, or 5000 per round?")
e = ((b - c) / d)
f = input (e)
if a == "gold":
b = input("How much does it cost?")
c = input("How much do you have?")
d = input("50 per round, 100 per round, 150 per round, 200 per round, or 250 per round?")
e = ((b - c) / d)
f = input (e)
EDIT: Forgot some stuff
# Hi forums!
a = raw_input("Gold or XP?")
if a == "xp":
b = input("How much xp until next level?")
c = input("How much xp do you have?")
d = input("1000, 2000, 3000, 4000, or 5000 per round?")
print ((b - c) / d)
if a == "gold":
b = input("How much does it cost?")
c = input("How much do you have?")
d = input("50 per round, 100 per round, 150 per round, 200 per round, or 250 per round?")
print ((b - c) / d)