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
If I wanted to increase soldier life and Tesla range for the duration of a map I would enter it under the “game narrative” tab. Then “on game start” tab. Then drop down menu and select “execute code” hit + button.
In the box put.
ApplyRules(“Soldier Life +50%”);
ApplyRules(“TeslaTower EnergyTransferRadius +50%”);
To add more information to matthescratch, here you can find a lot of information about what you can modify.
https://docs.google.com/spreadsheets/d/1rrTvMw9P932Q7kcZXQvS4MMcHfiNbYtEdN4dTRA516Q/edit#gid=812540755
This summarizes a lot of information about the basic stats of units and also all the name of the item and the variables you can change on them.
Also, whenever you are modding an item, don't forget the space: ApplyRules("Soldier Life + 50%")
Note that the % is ALWAYS calculated on the based stat, not the modified one.