173 print(" Cargo " + i); |
173 print(" Cargo " + i); |
174 print(" IsValidCargo(): " + AICargo.IsValidCargo(i)); |
174 print(" IsValidCargo(): " + AICargo.IsValidCargo(i)); |
175 print(" GetCargoLabel(): '" + AICargo.GetCargoLabel(i)+ "'"); |
175 print(" GetCargoLabel(): '" + AICargo.GetCargoLabel(i)+ "'"); |
176 print(" IsFreight(): " + AICargo.IsFreight(i)); |
176 print(" IsFreight(): " + AICargo.IsFreight(i)); |
177 print(" HasCargoClass(): " + AICargo.HasCargoClass(i, AICargo.CC_PASSENGERS)); |
177 print(" HasCargoClass(): " + AICargo.HasCargoClass(i, AICargo.CC_PASSENGERS)); |
|
178 print(" GetTownEffect(): " + AICargo.GetTownEffect(i)); |
178 print(" GetCargoIncome(0, 0): " + AICargo.GetCargoIncome(i, 0, 0)); |
179 print(" GetCargoIncome(0, 0): " + AICargo.GetCargoIncome(i, 0, 0)); |
179 print(" GetCargoIncome(10, 10): " + AICargo.GetCargoIncome(i, 10, 10)); |
180 print(" GetCargoIncome(10, 10): " + AICargo.GetCargoIncome(i, 10, 10)); |
180 print(" GetCargoIncome(100, 10): " + AICargo.GetCargoIncome(i, 100, 10)); |
181 print(" GetCargoIncome(100, 10): " + AICargo.GetCargoIncome(i, 100, 10)); |
181 print(" GetCargoIncome(10, 100): " + AICargo.GetCargoIncome(i, 10, 100)); |
182 print(" GetCargoIncome(10, 100): " + AICargo.GetCargoIncome(i, 10, 100)); |
182 } |
183 } |