ECS Vectors FAQ

From TTWiki
Revision as of 14:05, 5 November 2007 by George (talk | contribs)
Jump to navigationJump to search

ECS Vectors FAQ

FAQ about ECS vectors

Files

  • What is the right order of the files?

Town vector should be the first one, other vectors can go in any order. Vehicles and town sets should be located below the last of ECS vectors.

  • Can I use the "Construction vector" AND "Construction vector by Pikkabird" at the same time? (same for Machinery and Basic vectors mods)

No because of 32 cargoes per game limit.

  • Should I use Machinery vector for tropic in tropic?

You can use Machinery vector in tropic and Machinery vector for tropic in other landscapes. They would work. Same for all the vectors. They would work even in toyland.

Industries

  • Why do I have two different Banks in my Fund new industry window?

1 bank is from ECS Basic vector (or arctic/tropic mod) and one From TTRS3. This would be fixed when a ECS Basic vectors would go into beta stage.

Cargo accepting

  • Where should I transport food in temperate?

You need TTRS3 to provide houses that accept food. Also you can transport food to tourist centres.

Production

  • Why do industries do not accept cargo after map generation?

They need a few days after the world got generated before they start accepting anything. About 3.5 game days (that is 256 ticks). It happens because accepting cargo is coded using production callback and this time is a delay before the first production callback happens.

  • Why do industries produce more/less cargo than represented in the table?

There 2 factors that affect it. First factor is delay between production events. Because it is 256 ticks, production event may happen 8 or 9 times a month. Some values in the tables are calculated for 8 runs (You'll get higher values), some for 9 runs (You'll get smaller values). second factor is distribution. Every industry has a property, that specifies, how much cargo can be distributed at once. Usually they are 5, 10 and 15, but some industries may use other values too. When industry do not have enough cargo do distribute, it stores the cargo and distributes it on the next run. This forces smaller values on one run and higher on the other.

  • How to support breweries? They close down between fruit plantation / farm production periods.

You have to establish effective transportation system. You can do the following trick:

Split the line into 2 parts and put a transfer station in the middle. First (larger) group of vehicles gather fruit form plantations and transport them to transfer station with Unload. The second group slowly transports them to brewery. This transfer station negates the boom schema of plantation's production and provides stable delivery to the brewery (:rolleyes:)

Stockpiling

  • Why do industries can store more cargo, than represented in the table?

The acceptance check happens periodically (usually every 256 ticks) that means stockpiles may store more cargo, than the value represented in the table. It is as much as amount of cargo that has arrived since overflow happens till the check happens. Because the delay is up to 3.5 game days, this overflow can be rather large.