View Single Post
Illyahr
Senior Member
 
Join Date: Feb 2013
Posts: 357

Old September 24th, 2016, 12:33 PM
An issue I've been running into a couple times is having a class ability check to see if a special is present.

This, for example, is from the Fury of Vengeance ability:

if (hero.child[xRage] <> 0) then
perform assign[Helper.SpecUp]
hero.child[xRage].field[hTotal].value = maximum(hero.child[xRage].field[hTotal].value, field[hTotal].value)
endif

It's supposed to check if Hero has Rage. If it does, hides the class ability from the Specials tab. The ability functions like rage but doesn't stack so it says the hTotal of Rage would be whichever has a higher value.

In the case Rage is found, Fury of Vengeance adds +2 to Str, +2 to Con, and +1 to Will when raging and fighting Shadowlands creatures so I think it'd look something like this:

if (hero.child[xRage] <> 0) then
if (field[hIsOn1].value <> 0) then
~ +2 Str
~ +2 Con
~ +1 Will
else
~ Barbarian Rage stat boosts
endif
endif

It's that first line that's giving me trouble, and I think the hTotal value check is going to give me trouble. Any suggestions?
Illyahr is offline   #1 Reply With Quote