Example #1
0
 def default(self, line):
     action_input = parse_translate(line)
     if "npcschedule" in action_input:
         sched(action_input, available_actions, player, room)
         return
     if action_input != "ERROR":
         action_parser(action_input, available_actions, player, room)
     return line
 def do_mytest(self, line):
     action_input = parse_translate(line)
     if action_input != "ERROR":
         action_parser(action_input, available_actions, player, room)
     return line