Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I think you need
ApplyRules(“Titan IronGen -1”);
As for warehouse range I think it’s just
ApplyRules(“WareHouse WatchRange =100”);
Not sure though as I don’t think iv ever changed the warehouse range before and can’t test it atm.
ApplyRules("Unit GoldGen = 0 ; Ranger GoldGen - 1 ; Soldier GoldGen - 2 ; Sniper GoldGen - 3 ; Lucifer GoldGen - 4 ; Thanatos GoldGen - 5 ; Mutant GoldGen - 6 ; Titan GoldGen - 7")
GoldGen - is how much your units produce Gold when alive (short for Gold Generate).
You can do the same with Food:
ApplyRules("Ranger FoodNeeded = 1 ; Soldier FoodNeeded = 2 ; Sniper FoodNeeded = 3 ; Lucifer FoodNeeded = 4 ; Thanatos FoodNeeded = 5 ; Mutant FoodNeeded = 6 ; Titan FoodNeeded = 7")
And for Iron:
ApplyRules("Unit IronGen = 0 ; Titan IronGen - 7")
Here are all your options for upkeep:
WorkersNeeded: Number of workers the unit/building needs to be active.
FoodNeeded: The amount of food the unit/building needs to be active.
EnergyNeeded: Amount of energy the unit/building needs to be active.
WoodGen: is how much your unit/building produces Wood when alive.
StoneGen: is how much your unit/building produces Stone when alive.
IronGen: is how much your unit/building produces Iron when alive.
OilGen: is how much your unit/building produces Oil when alive.
GoldGen: is how much your unit/building produces Gold when alive.
To change WareHouse, Bank, and Market you can do this:
ApplyRules("Bank MaxInstances = 0 ; Market MaxInstances = 0 ; WareHouse MaxInstances = 0")
ApplyRules("Bank SameBuildingMargin = 20 ; Market SameBuildingMargin = 20 ; WareHouse SameBuildingMargin = 20")
ApplyRules("Bank FactorGoldNearBuildings = 25%")
ApplyRules("Market FactorFoodNeedNearBuildings = 75% ; Market FactorFoodNeedNearBuildings - 1") < (that will make the food needed -25%)
ApplyRules("WareHouse FactorProductionNearBuildings = 25%")
MaxInstances - will change the number of buildings the player can use in the game.
If it's 0 it's infinite.
SameBuildingMargin - will change the radius of the effect for each building.
(You can use it on other buildings as well - to make them buildable closer or farther.)
FactorGoldNearBuildings - will change the amount of Gold buff the building gives to near houses.
FactorFoodNeedNearBuildings - will change the amount of Food needed for near houses.
FactorProductionNearBuildings - will change the amount of all other productions (Wood, Oil, Iron, Stone, Gold, and Food) for near buildings.
You sir are a genius.
As for the other question I had, I'll try out your suggestions.