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
Try this ApplyRules("ZombieGiant Damage += X%")
Replace X by the amount of damage you would like. Keep in mind that spaces are important between each variable you are calling in an ApplyRule. Let me know if it worked!
Oddly enough, when I try to use what you suggested, I get the "bad arguments" error. https://imgur.com/a/fQ33DLg
This works:
ApplyRules("ZombieGiant Life+100000; ZombieGiant RunSpeed+100000")
ApplyRules("Ranger WatchRange +1;RangerVeteran WatchRange +1;RangerAttack ActionRange +1;RangerAttackVeteran ActionRange +1")
None of these work:
ApplyRules("ZombieGiant Damage += 100000")
ApplyRules("ZombieGiant Damage = 100000") <-- tried statically setting value
ApplyRules("ZombieGiant Damage += 100%")
ApplyRules("ZombieGiant AttackDamage += 100000")
ApplyRules("ZombieGiant AttackDamage += 100%")
ApplyRules("ZombieGiant Attack += 100000")
ApplyRules("ZombieGiant Attack += 100%")