Lone Wolf Development Forums

Lone Wolf Development Forums (http://forums.wolflair.com/index.php)
-   HL - Pathfinder Roleplaying Game (http://forums.wolflair.com/forumdisplay.php?f=62)
-   -   Seeking advice re. evolution-based arcane familiar archetype (http://forums.wolflair.com/showthread.php?t=61025)

Doskious August 4th, 2018 03:30 PM

Seeking advice re. evolution-based arcane familiar archetype
 
I'm trying to whomp up an archetype for Arcane Familiars that, mechanially, gives them an evolution pool based on their master's primary casting stat modifier.

Unfortunately, everything I've tried to achieve this via Eval Script has failed one way or another: if I time the script in the PostAttribute phase, it can identify the right number just fine, but the number of evolution points that the familiar displays appears not to change, but if I time the script in the PostLevel phase (or earlier), while it gains the ability to modify the value that determines the number of evolution points, it loses the ability to determine the master's casting-stat modifier...

The following code executes on the familiar as the "hero" thing. Everything I can find about bumping evolution points seems to execute by the PostLevel phase, and I'm starting to think that what I want to do is not possible to do in HeroLab (which strikes me as both silly and unfortunate, if true).

Code:

<eval phase="PostLevel" priority="10000" index="2"><![CDATA[
  var bonus as number
  bonus = 1
  foreach pick in master.hero from Class where "sClass.arDFamMorp"
    debug eachpick.field[cAbbr].text & ": " & eachpick.field[cSplAttBon].value
    bonus = maximum(eachpick.field[cSplAttBon].value, bonus)
    nexteach
  debug "bonus: " & bonus
  perform hero.findchild[BaseRace].setfocus
  focus.field[rGiveSpec].value += bonus
  debug "Evolutions: " & hero.findchild[BaseRace].field[rGiveSpec].value]]></eval>

Any insight into how to overcome this conundrum would be greatly appreciated...

Dwayne August 5th, 2018 02:42 PM

I don't know if this helps but the figment archetype for familiars adds an evolution pool to the familiar.

Doskious August 6th, 2018 01:33 PM

Quote:

Originally Posted by Dwayne (Post 268935)
I don't know if this helps but the figment archetype for familiars adds an evolution pool to the familiar.

Thanks; that's the model I've based my development on, actually. Unfortunately, I can't seem to find anything that modifies the evolution count for any minion based on an attribute value.


All times are GMT -8. The time now is 04:08 PM.

Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.