def at_cmdset_creation(self): self.add(overrides.CmdPose()) # emit was originally an admin command. Replaced those with gemit self.add(overrides.CmdEmit()) self.add(overrides.CmdArxTime()) self.add(general.CmdOOCSay()) self.add(general.CmdDirections()) self.add(general.CmdKeyring()) self.add(general.CmdGlance()) # sorta IC commands, since information is interpretted by the # character and may not be strictly accurate. self.add(extended_room.CmdExtendedLook()) self.add(roster.CmdHere()) self.add(social.CmdHangouts()) self.add(social.CmdWhere()) self.add(social.CmdJournal()) self.add(social.CmdMessenger()) self.add(social.CmdRoomHistory()) self.add(social.CmdRoomMood()) self.add(social.CmdRandomScene()) self.add(social.CmdRoomTitle()) self.add(social.CmdTempDesc()) self.add(social.CmdLanguages()) self.add(maps.CmdMap()) self.add(story_actions.CmdAction()) self.add(plot_commands.CmdPlots()) self.add(goal_commands.CmdGoals()) self.add(combat.CmdHeal()) # Magic! self.add(magic_commands.MagicCmdSet())
def at_cmdset_creation(self): self.add(overrides.CmdGet()) self.add(overrides.CmdDrop()) self.add(overrides.CmdGive()) self.add(overrides.CmdArxSay()) self.add(general.CmdWhisper()) self.add(general.CmdFollow()) self.add(general.CmdDitch()) self.add(general.CmdShout()) self.add(general.CmdPut()) self.add(general.CmdLockObject()) self.add(xp.CmdTrain()) self.add(xp.CmdUseXP()) self.add(cmdset_places.CmdListPlaces()) self.add(combat.CmdStartCombat()) self.add(combat.CmdProtect()) self.add(combat.CmdAutoattack()) self.add(combat.CmdCombatStats()) self.add(combat.CmdHeal()) self.add(combat.CmdHarm()) self.add(combat.CmdFightStatus()) self.add(agent_commands.CmdGuards()) self.add(domcommands.CmdPlotRoom()) # self.add(domcommands.CmdTask()) # self.add(domcommands.CmdSupport()) self.add(domcommands.CmdWork()) self.add(domcommands.CmdCleanupDomain()) self.add(crafting.CmdCraft()) self.add(crafting.CmdRecipes()) self.add(crafting.CmdJunk()) self.add(social.CmdPraise()) # self.add(social.CmdCondemn()) self.add(social.CmdThink()) self.add(social.CmdFeel()) self.add(social.CmdDonate()) self.add(social.CmdFirstImpression()) self.add(social.CmdGetInLine()) self.add(investigation.CmdInvestigate()) self.add(investigation.CmdAssistInvestigation()) self.add(general.CmdDump()) self.add(CmdApplyConsumable()) self.add(gambling.CmdRoll()) self.add(fashion_commands.CmdFashionModel()) self.add(fashion_commands.CmdFashionOutfit()) self.add(petitions_commands.CmdPetition())