Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/MAFH.activity
diff options
context:
space:
mode:
authorBlitzkev <blitzkev@gmail.com>2010-05-20 18:43:43 (GMT)
committer Blitzkev <blitzkev@gmail.com>2010-05-20 18:43:43 (GMT)
commitd6c5159336c70f177c9de3aa49676fa5a953dee8 (patch)
treeddf9d402a170e7a7d43467095b7f04f7789422d9 /MAFH.activity
parentb7dcec4137d950faddd0c3d6395929c221939db0 (diff)
debugging
Diffstat (limited to 'MAFH.activity')
-rw-r--r--MAFH.activity/pippy_app.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/MAFH.activity/pippy_app.py b/MAFH.activity/pippy_app.py
index e19c5ea..aa1c77e 100644
--- a/MAFH.activity/pippy_app.py
+++ b/MAFH.activity/pippy_app.py
@@ -1555,7 +1555,7 @@ def checkDoor(direction,player,screen):
if currentRoom.doorNFlag==EXIT:
for item in player.battlePlayer.inv_Ar:
if item.name=="Big Key":
- player.unlock2.play()
+ #player.unlock2.play()
player.battlePlayer.inv_Ar.remove(item)
player.nextDungeon()
return("You use the BIG KEY, and the door slams behind you")
@@ -1565,9 +1565,9 @@ def checkDoor(direction,player,screen):
elif currentRoom.doorNFlag==LOCKED:
for item in player.battlePlayer.inv_Ar:
if item.name=="Small Key":
- player.unlock1.play()
+ #player.unlock1.play()
return("You use a SMALL KEY, "+enterRoom('north',player,screen))
- player.locked.play()
+ #player.locked.play()
return("This door is locked, you need a SMALL KEY")
elif currentRoom.doorNFlag==PUZZLE or currentRoom.doorNFlag==BOTH:
startPuzzle(player)
@@ -1583,7 +1583,7 @@ def checkDoor(direction,player,screen):
if currentRoom.doorSFlag==EXIT:
for item in player.battlePlayer.inv_Ar:
if item.name=="Big Key":
- player.unlock2.play()
+ #player.unlock2.play()
player.battlePlayer.inv_Ar.remove(item)
player.nextDungeon()
return("You use the BIG KEY, and the door slams behind you")
@@ -1593,9 +1593,9 @@ def checkDoor(direction,player,screen):
elif currentRoom.doorSFlag==LOCKED:
for item in player.battlePlayer.inv_Ar:
if item.name=="Small Key":
- player.unlock1.play()
+ #player.unlock1.play()
return("You use a SMALL KEY, "+enterRoom('south',player,screen))
- player.locked.play()
+ #player.locked.play()
return("This door is locked, you need a SMALL KEY")
elif currentRoom.doorSFlag==PUZZLE or currentRoom.doorSFlag==BOTH:
startPuzzle(player)
@@ -1611,7 +1611,7 @@ def checkDoor(direction,player,screen):
if currentRoom.doorEFlag==EXIT:
for item in player.battlePlayer.inv_Ar:
if item.name=="Big Key":
- player.unlock2.play()
+ #player.unlock2.play()
player.battlePlayer.inv_Ar.remove(item)
player.nextDungeon()
return("You use the BIG KEY, and the door slams behind you")
@@ -1621,9 +1621,9 @@ def checkDoor(direction,player,screen):
elif currentRoom.doorEFlag==LOCKED:
for item in player.battlePlayer.inv_Ar:
if item.name=="Small Key":
- player.unlock1.play()
+ #player.unlock1.play()
return("You use a SMALL KEY, "+enterRoom('east',player,screen))
- player.locked.play()
+ #player.locked.play()
return("This door is locked, you need a SMALL KEY")
elif currentRoom.doorEFlag==PUZZLE or currentRoom.doorEFlag==BOTH:
startPuzzle(player)
@@ -1639,7 +1639,7 @@ def checkDoor(direction,player,screen):
if currentRoom.doorWFlag==EXIT:
for item in player.battlePlayer.inv_Ar:
if item.name=="Big Key":
- player.unlock2.play()
+ #player.unlock2.play()
player.battlePlayer.inv_Ar.remove(item)
player.nextDungeon()
return("You use the BIG KEY, and the door slams behind you")
@@ -1649,9 +1649,9 @@ def checkDoor(direction,player,screen):
elif currentRoom.doorWFlag==LOCKED:
for item in player.battlePlayer.inv_Ar:
if item.name=="Small Key":
- player.unlock1.play()
+ #player.unlock1.play()
return("You use a SMALL KEY, "+enterRoom('west',player,screen))
- player.locked.play()
+ #player.locked.play()
return("This door is locked, you need a SMALL KEY")
elif currentRoom.doorWFlag==PUZZLE or currentRoom.doorWFlag==BOTH:
startPuzzle(player)