Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 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)