Loading

Paste #pm8nykyc1

  1.         if (AIController.GetSetting("scp_support")) {
  2.             this.scp = SCPLib("LDAF", 8);
  3. //          this.scp.SCPLogging_Info(true);
  4. //          this.scp.SCPLogging_Error(true);
  5.         }
  6.         this.cvgs = SCPClient_CompanyValueGS(this.scp);
  7.         this.ncg = SCPClient_NoCarGoal(this.scp);
  8.  
  9.         loading = false;
  10.     }
  11.  
  12.     local cityFrom = null;
  13.     while (AIController.Sleep(1)) {
  14.         if (this.scp != null) {
  15.             local counter = 0;
  16.             do {
  17.                 AILog.Info("Counter = " + counter);
  18.                 this.scp.Check();
  19.                 if (cvgs.IsCompanyValueGSGame() || ncg.IsNoCarGoalGame()) {
  20.                     break;
  21.                 }
  22.                 counter++;
  23.             } while(counter < 500);
  24.         }

Comments