def at_cmdset_creation(self):
     """
     Populates the cmdset
     """
     super(CharacterCmdSet, self).at_cmdset_creation()
     #
     # any commands you add below will overload the default ones.
     #
     self.add(dice.CmdDice())
     self.add(command.CmdAttack())
     self.add(command.CmdEquip())
 def at_cmdset_creation(self):
     """
     Populates the cmdset
     """
     super().at_cmdset_creation()
     #
     # any commands you add below will overload the default ones.
     #
     self.add(command.CmdAttack())
     self.add(command.CmdCreateNPC())  # These 3 lines were not mentioned
     self.add(command.CmdEditNPC())  # in the tutorial, but must be
     self.add(command.CmdNPC())  # inserted
 def at_cmdset_creation(self):
     """
     Populates the cmdset
     """
     super(CharacterCmdSet, self).at_cmdset_creation()
     #
     # any commands you add below will overload the default ones.
     #
     self.add(CmdAttributes())
     self.add(CmdSkills())
     self.add(CmdEcho())
     self.add(command.CmdAttack())
     self.add(command.CmdCreateNPC())
     self.add(command.CmdEditNPC())
Example #4
0
 def at_cmdset_creation(self):
     """
     Populates the cmdset
     """
     self.add(command.CmdAttack())
     self.add(command.CmdCreateNPC())
     self.add(command.CmdEditNPC())
     self.add(command.CmdEquip())
     self.add(storynpcs.CmdTalk())
     self.add(npcshop.CmdBuildShop())
     self.add(command.CmdShowAttr())
     self.add(command.CmdSetStance())
     self.add(levels.CmdLevelUp())
     self.add(command.CmdDrink())
     super().at_cmdset_creation()
Example #5
0
 def at_cmdset_creation(self):
     """
     Populates the cmdset
     """
     super(CharacterCmdSet, self).at_cmdset_creation()
     #
     # any commands you add below will overload the default ones.
     #
     # self.add(CmdAbilities())
     self.add(command.CmdAttack())
     self.add(command.CmdCreateNPC())
     self.add(command.CmdEditNPC())
     self.add(command.CmdNPC())
     self.add(command.CmdEcho())
     self.add(builder.CmdRaise())
     self.add(builder.CmdWalk())
     self.add(builder.CmdWind())
     self.add(builder.CmdCurrent())
Example #6
0
 def at_cmdset_creation(self):
     """
     Populates the cmdset
     """
     super(CharacterCmdSet, self).at_cmdset_creation()
     #
     # any commands you add below will overload the default ones.
     #
     self.add(command.CmdSmile())
     self.add(command.CmdWait())
     self.add(command.CmdConfirm())
     self.add(command.CmdAttack())
     self.add(command.CmdCreateNPC())
     self.add(command.CmdEditNPC())
     self.add(CmdMail())
     self.add(jobcommand.CmdBuckets())
     self.add(jobcommand.CmdJobs())
     self.add(jobcommand.CmdJgroups())
Example #7
0
 def at_cmdset_creation(self):
     self.add(command.CmdAttack())