Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Try the old standby, the pound sign (or hashtag, for you youngins): "#"
but yea... the issue is with the Infinite recursion...
Something like...
def Check():
Number1=500000
Number2=200000
Number3=100000
Number4=90000
Number5=80000
Number6=70000
Number7=60000
Number8=1000
if num_items(Items.Power) <Number8 :
Flower()
elif num_items(Items.Hay) < Number1:
Hay()
elif num_items(Items.Wood) < Number2:
Tree()
elif num_items(Items.Carrot) < Number3:
Carrot()
elif num_items(Items.Pumpkin) < Number4:
Pumpkin()
elif num_items(Items.Cactus) < Number5:
Cactus()
elif num_items(Items.Gold) < Number6:
Maze()
elif num_items(Items.Bone) < Number7:
Dino()
else:
do_a_flip()
then added
Number=0
while True:
if Number>=10:
Check()
Number=0
Number=Number+1
to each of the codes then only checks every 10 runs of the code. i set it based off what i am farming.. the numbers above are just examples