what is wrong with this code
#This is not free source
#Don't cheat by looking @ this
#If you do you ruin the game
#A Towel Production
# APOC
#-------
global ammo1
global ammo2
global ammo3
global health
global tech_parts
global exp
global radio_parts
ammo1=10
ammo2=0
ammo3=0
health=100
tech_parts=0
exp=0
radio_parts=0
def simpstart():
print "You wake in a haze. A crate,a door and a radio."
g1 = raw_input("Which do you choose")
if g1 == "CRATE" or g1 == "Crate" or g1 == "crate":
print "There is a pack of ammo,some food and an odd microchip"
ammo1=ammo1+6
health=health+10
tech_parts=tech_parts+1
elif g1 =="DOOR" or g1 == "Door" or g1 == "door":
print "You are outside"
elif g1 == "RADIO" or g1 == "Radio" or g1 == "radio":
print "It's only a few parts"
radio_parts=radio_parts+3
g2 = raw_input("So this is NYC.Ten years after.There are a few streets.Go west or north"
if g2 == "WEST" or g2 == "West" or g2 == "west"
path_1()
elif g2 == "NORTH" or g2 == "North" or g2 == "north":
path2()
def path_1():
print "This is where it all started. Freedom Tower. A biotech firm called Aesthos Biotechnology. Based here."
print "I worked there."
1 = raw_input("Go in or stay out")
if 1 == "GO IN" or 1 == "Go in" or 1 == "go in":
2 = raw_input
Jacklittle01 -3 Light Poster
TrustyTony 888 pyMod Team Colleague Featured Poster
Jacklittle01 -3 Light Poster
M.S. 53 Light Poster
TrustyTony 888 pyMod Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.