def createCogHeadquarters(self):
     NPCToons.generateZone2NpcDict()
     if self.config.GetBool('want-sellbot-headquarters', True):
         self.factoryMgr = FactoryManagerAI.FactoryManagerAI(self)
         self.cogHeadquarters.append(SellbotHQAI.SellbotHQAI(self))
     if self.config.GetBool('want-cashbot-headquarters', True):
         self.mintMgr = MintManagerAI.MintManagerAI(self)
         self.cogHeadquarters.append(CashbotHQAI.CashbotHQAI(self))
     if self.config.GetBool('want-lawbot-headquarters', True):
         self.lawOfficeMgr = LawOfficeManagerAI.LawOfficeManagerAI(self)
         self.cogHeadquarters.append(LawbotHQAI.LawbotHQAI(self))
     if self.config.GetBool('want-bossbot-headquarters', True):
         self.countryClubMgr = CountryClubManagerAI.CountryClubManagerAI(self)
         self.cogHeadquarters.append(BossbotHQAI.BossbotHQAI(self))
Exemplo n.º 2
0
 def createCogHeadquarters(self):
     NPCToons.generateZone2NpcDict()
     if self.config.GetBool('want-sellbot-headquarters', True):
         self.factoryMgr = FactoryManagerAI.FactoryManagerAI(self)
         self.cogHeadquarters.append(SellbotHQAI.SellbotHQAI(self))
     if self.config.GetBool('want-cashbot-headquarters', True):
         self.mintMgr = MintManagerAI.MintManagerAI(self)
         self.cogHeadquarters.append(CashbotHQAI.CashbotHQAI(self))
     if self.config.GetBool('want-lawbot-headquarters', True):
         self.lawOfficeMgr = LawOfficeManagerAI.LawOfficeManagerAI(self)
         self.cogHeadquarters.append(LawbotHQAI.LawbotHQAI(self))
     if self.config.GetBool('want-bossbot-headquarters', True):
         self.countryClubMgr = CountryClubManagerAI.CountryClubManagerAI(
             self)
         self.cogHeadquarters.append(BossbotHQAI.BossbotHQAI(self))
Exemplo n.º 3
0
 def createSafeZones(self):
     NPCToons.generateZone2NpcDict()
     if self.config.GetBool('want-toontown-central', True):
         self.hoods.append(TTHoodAI.TTHoodAI(self))
     if self.config.GetBool('want-donalds-dock', True):
         self.hoods.append(DDHoodAI.DDHoodAI(self))
     if self.config.GetBool('want-daisys-garden', True):
         self.hoods.append(DGHoodAI.DGHoodAI(self))
     if self.config.GetBool('want-minnies-melodyland', True):
         self.hoods.append(MMHoodAI.MMHoodAI(self))
     if self.config.GetBool('want-the-brrrgh', True):
         self.hoods.append(BRHoodAI.BRHoodAI(self))
     if self.config.GetBool('want-donalds-dreamland', True):
         self.hoods.append(DLHoodAI.DLHoodAI(self))
     if self.config.GetBool('want-goofy-speedway', True):
         self.hoods.append(GSHoodAI.GSHoodAI(self))
     if self.config.GetBool('want-outdoor-zone', True):
         self.hoods.append(OZHoodAI.OZHoodAI(self))
     if self.config.GetBool('want-golf-zone', True):
         self.hoods.append(GZHoodAI.GZHoodAI(self))
 def createSafeZones(self):
     NPCToons.generateZone2NpcDict()
     if self.config.GetBool('want-toontown-central', True):
         self.hoods.append(TTHoodAI.TTHoodAI(self))
     if self.config.GetBool('want-donalds-dock', True):
         self.hoods.append(DDHoodAI.DDHoodAI(self))
     if self.config.GetBool('want-daisys-garden', True):
         self.hoods.append(DGHoodAI.DGHoodAI(self))
     if self.config.GetBool('want-minnies-melodyland', True):
         self.hoods.append(MMHoodAI.MMHoodAI(self))
     if self.config.GetBool('want-the-brrrgh', True):
         self.hoods.append(BRHoodAI.BRHoodAI(self))
     if self.config.GetBool('want-donalds-dreamland', True):
         self.hoods.append(DLHoodAI.DLHoodAI(self))
     if self.config.GetBool('want-goofy-speedway', True):
         self.hoods.append(GSHoodAI.GSHoodAI(self))
     if self.config.GetBool('want-outdoor-zone', True):
         self.hoods.append(OZHoodAI.OZHoodAI(self))
     if self.config.GetBool('want-golf-zone', True):
         self.hoods.append(GZHoodAI.GZHoodAI(self))