Пример #1
0
    def createOfficeBoardingParty(self):
        lawOfficeIdList = []
        for lawOfficeElevator in self.lawOfficeElevators:
            lawOfficeIdList.append(lawOfficeElevator.doId)

        self.officeBoardingParty = DistributedBoardingPartyAI(
            self.air, lawOfficeIdList, 4)
        self.officeBoardingParty.generateWithRequired(
            ToontownGlobals.LawbotOfficeExt)
Пример #2
0
    def createFactoryBoardingParty(self):
        factoryIdList = []
        for factoryElevator in self.factoryElevators:
            factoryIdList.append(factoryElevator.doId)

        self.factoryBoardingParty = DistributedBoardingPartyAI(
            self.air, factoryIdList, 4)
        self.factoryBoardingParty.generateWithRequired(
            ToontownGlobals.SellbotFactoryExt)
Пример #3
0
 def createBoardingParty(self):
     self.boardingParty = DistributedBoardingPartyAI(
         self.air, [self.lobbyElevator.doId], 8)
     self.boardingParty.generateWithRequired(self.lobbyZoneId)
 def createMintBoardingParty(self):
     mintIdList = []
     for mintElevator in self.mintElevators:
         mintIdList.append(mintElevator.doId)
     self.mintBoardingParty = DistributedBoardingPartyAI(self.air, mintIdList, 4)
     self.mintBoardingParty.generateWithRequired(self.zoneId)
 def createCourseBoardingParty(self):
     cogKartIdList = []
     for cogKart in self.cogKarts:
         cogKartIdList.append(cogKart.doId)
     self.courseBoardingParty = DistributedBoardingPartyAI(self.air, cogKartIdList, 4)
     self.courseBoardingParty.generateWithRequired(self.zoneId)