Loading

Paste #pdgfmjmtg

  1.         switch (FEAT_INDUSTRIES, SELF, blast_furnace_produce_economy_0,
  2.                 [
  3.                         STORE_PERM(
  4.                             LOAD_PERM(10) + 1000,
  5.                                 10
  6.                         ),
  7.                         STORE_PERM(
  8.                             max(LOAD_PERM(1), (incoming_cargo_waiting("IORE") > 0) * current_date),
  9.                                 1
  10.                         ),
  11.                         STORE_PERM(
  12.                             LOAD_PERM(10) + 1000,
  13.                                 10
  14.                         ),
  15.                         STORE_PERM(
  16.                             max(LOAD_PERM(2), (incoming_cargo_waiting("COAL") > 0) * current_date),
  17.                                 2
  18.                         ),
  19.                         STORE_PERM(
  20.                             LOAD_PERM(10) + 1000,
  21.                                 10
  22.                         ),
  23.                         STORE_PERM(
  24.                             max(LOAD_PERM(3), (incoming_cargo_waiting("SCMT") > 0) * current_date),
  25.                                 3
  26.                         ),
  27.                     STORE_PERM(0, 9),
  28.                     STORE_PERM(100, 10),
  29.                 ]) {
  30.             blast_furnace_simple_produce_0;
  31.         }

Comments