Loading

Paste #pxcis8ysh

  1. Example 1:
  2.         local indtypes = GSIndustryTypeList();
  3.         for (local it = indtypes.Begin(); !indtypes.IsEnd(); it = indtypes.Next())
  4.         {
  5.                 if (GSIndustryType.IsRawIndustry(it))
  6.                 {
  7.                      ...
  8.                 }
  9.         }
  10.  
  11.  
  12. Example 2:
  13.  
  14.                 neighbors = GSTownList()
  15.                 foreach(t in neighbors) {
  16.                         Log.Info("  " + GSTown.GetName(t.id) + "  " + t.dist);
  17.                 }

Comments