Пример #1
0
 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)
Пример #2
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)
Пример #3
0
 def createBoardingParty(self):
     self.boardingParty = DistributedBoardingPartyAI(
         self.air, [self.lobbyElevator.doId], 8)
     self.boardingParty.generateWithRequired(self.lobbyZoneId)
Пример #4
0
 def createFactoryBoardingParty(self):
     factoryIdList = [elevator.doId for elevator in self.factoryElevators]
     self.factoryBoardingParty = DistributedBoardingPartyAI(self.air, factoryIdList, 4)
     self.factoryBoardingParty.generateWithRequired(ToontownGlobals.SellbotFactoryExt)
Пример #5
0
 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)