Example #1
0
 def pick_up(self, message, item):
     print 'picking up'
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.pick_up(item)
         print 'response to pick up is {0}'.format(response)
         self.reply(message, response)
Example #2
0
 def use(self, message, item):
     print 'using'
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.use(item)
         print 'response to use is {0}'.format(response)
         self.reply(message, response)
Example #3
0
 def attack(self, message, monster):
     print 'attacking'
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.attack(monster)
         print 'response to atack is {0}'.format(response)
         self.reply(message, response)
Example #4
0
 def move_north(self, message):
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.move_north(message)
         print 'response from move north {0}'.format(response)
         self.reply(message, response)
Example #5
0
 def move_west(self, message):
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.move_west(message)
         self.reply(message, response)
Example #6
0
 def pick_up(self, message, item):
     print 'picking up'
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.pick_up(item)
         print 'response to pick up is {0}'.format(response)
         self.reply(message, response)
Example #7
0
 def attack(self, message, monster):
     print 'attacking'
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.attack(monster)
         print 'response to atack is {0}'.format(response)
         self.reply(message, response)
Example #8
0
 def use(self, message, item):
     print 'using'
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.use(item)
         print 'response to use is {0}'.format(response)
         self.reply(message, response)
Example #9
0
 def move_west(self, message):
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.move_west(message)
         self.reply(message, response)
Example #10
0
 def move_north(self, message):
     if quest.users_turn(message.sender.nick) and quest.status == 'started':
         response = quest.move_north(message)
         print 'response from move north {0}'.format(response)
         self.reply(message, response)