supertails
Dictator
- 456
- Posts
- 17
- Years
- Age 37
- Atlanta GA
- Seen Jul 16, 2010
I'm trying very hard to get this to work but it seems like that I'm making no progress. If I can get this 1 thing I believe I can make this entire game. I'm programming it in Python. ps I need a program converted to hex cause I can't get the chips programmed. long story but here it is. https://www.evilmadscientist.com/article.php/tennis
PHP:
print "Welcome to Fire of Demons, I hope you will love the game." print "It starts out in modern times but it dates" print "back 10 years ago. When all were" print "happy but The Dark King hated it and decided to make demons" print "The demons slowly started taking over the world." print "One brave fox named Sam. Will try to stop the" print "demons from taking over the world." print "Can he destroy all the demons? I hope so." print "You are on the Mansion Grounds. You married into money" print "and everything is good and calm here" print "" print "1.) Enter your Mansion" print "2.) Go East" print "3.) Go West" print "4.) Go South" x = int if x == "1" then_goto Mansion if x == "2" then_goto East if x == "3" then_goto West if x == "4" then_goto South Mansion: els print "You are in your Mansion. You see a Staircase going up" print "Two rooms East and West. A room pass the Stairs" print "" print "1.) Go Up" print "2.) Go East" print "3.) Go West" print "4.) Go South" print "5.) Pass Stairs" x = int if x == "1" then_goto Up if x == "2" then_goto East if x == "3" then_goto West if x == "4" then_goto South if x == "5" then_goto Pass East: els West: els South: els