• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Would this script work?

Senko

Well-known member
I'm trying to change the many forms mythic ability so that at 9th tier the polymorph effect changes from 10 minutes a tier to 1 hour a tier. I know how it goes from 1 minute to 10 minutes this script . . .

Phase - Post Levels; Priority - 10000; Index - 6
field[abDuration].value += field[xTotalLev].value

if (#tiereffect[] >= 6) then
field[abDuration].value *= 10
endif


and the original defination is this . . .

phase - render; priority - 10000; index - 7
field[livename].text = field[thingname].text & " (" & field[abDuration].value & " minutes)"
field[abSumm].text = "{i}Alter self{/i} at will, spend 1 power to use {i}polymorph{/i} for " & field[abDuration].value & " minutes."


So would this script work to change it to 1 hour at 9th tier?

Phase - render Levels; Priority - 10000; Index - 8
if (#tiereffect[] >= 9) then
field[livename].text = field[thingname].text & " (" & field[abDuration].value & " hour)"
field[abSumm].text = "{i}Alter self{/i} at will, spend 1 power to use {i}polymorph{/i} for " & field[abDuration].value & " hour."

Phase - Post Levels; Priority - 10000; Index - 6
field[abDuration].value += field[xTotalLev].value

if (#tiereffect[] >= 9) then
field[abDuration].value *= 1
endif
 
Minutes vs. hours will be stored as a tag on the pick. So just delete the minutes tag and assign an hours tag - a little debugging should let you find an example of exactly what the hours tag is.
 
I want it to change at 9th tier while continuing to work as it already does before that though.tiers 1-5 is tier minutes and tier 6 - 8 is tier 10 minutes as it currenlty is. I just want to have it change again from 10 minutes a tier to 1 hour a tier for the last two.
 
You can change the tag only at tier 9+ - just stop multiplying by 10 at that point, since you're back to x1, instead of the x10 it had been from 6-8
 
That's the second part of the script

Phase - Post Levels; Priority - 10000; Index - 6
field[abDuration].value += field[xTotalLev].value

if (#tiereffect[] >= 9) then
field[abDuration].value *= 1
endif

I'm just wondering more about the changing minutes to hours part.

Phase - render Levels; Priority - 10000; Index - 8
if (#tiereffect[] >= 9) then
field[livename].text = field[thingname].text & " (" & field[abDuration].value & " hour)"
field[abSumm].text = "{i}Alter self{/i} at will, spend 1 power to use {i}polymorph{/i} for " & field[abDuration].value & " hour."

Especially index as I haven't located it in the tutorials yet hoping have time look properly tommorow.

EDIT
Hmm or I can make a houserule that's just hours and swap from the official one to the housruled one later good idea.
 
Last edited:
I'm saying there is a better way to do this than changing the livename - change the tags, and then HL will handle changing the livename automatically, if this is an ability that already displays its duration in the livename.
 
I'm saying there is a better way to do this than changing the livename - change the tags, and then HL will handle changing the livename automatically, if this is an ability that already displays its duration in the livename.

The tags I can see on the original abilty (non-copieable just replicated) are appending spell information for polymorph and alter self, a user activation one a spec source mythic archmage, an ability type supernatural, a helper activ menu, another helper adj polymorph, another helper mythic. None of them seem to be particularly tied to minutes.
 
Last edited:
The abDuration at tier 9+ will be x1, like for tier 1-5, but you're changing the units that are used to label that value from "minutes" to "hours".
 
The abDuration at tier 9+ will be x1, like for tier 1-5, but you're changing the units that are used to label that value from "minutes" to "hours".

I thought that was what livename did as the only abdjuration I can see on this ability is . . .


field[abDuration].value += field[xTotalLev].value

which doesn't appear to have any identifiers to define it as minutes or hours.
 

Attachments

Was this copied from something of ours? This is not handling the name generation the way I would expect it to - not using the most efficient way.

Among the editor settings should be duration settings - there should be a selector for the units for the duration. Then, in the automatic livename options should be a checkbox to include the duration. Then, you can delete the line that's setting the duration in the script.
 
Was this copied from something of ours? This is not handling the name generation the way I would expect it to - not using the most efficient way.

Among the editor settings should be duration settings - there should be a selector for the units for the duration. Then, in the automatic livename options should be a checkbox to include the duration. Then, you can delete the line that's setting the duration in the script.

Yes its one of yours its the many form mythic ability cMArManFor. I copied it as directly as I could by manually duplicating every thing I could see into a new house ruled one I shared (original is one of the non-saveable/copieable items) so I could add the tier 9 upgrade to 1 hour per tier but so far I've made no changes from the original. I'll try an do what you suggest when I'm off work tonight.
 
Back
Top