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)
-   -   Pathfinder Community Packs (http://forums.wolflair.com/showthread.php?t=51966)

Skarn March 28th, 2017 04:38 AM

I have another Eberron bug report for CP17.

The template 'Horrid Animal' isn't adding +5 Natural Armor like it should, per Eberron Campaign Setting p. 289.

Ualaa March 28th, 2017 04:41 AM

There are several Path of War: Expanded disciplines, which I can add to characters via Martial Training I (and later feats in that tree), which are not available to classes that get those disciplines as part of their classes.

I assume this is because the feats have been added, for Expanded, but the classes haven't been updated yet.
But that could also have been a bug, if they were supposed to have been added but were not.
Only one of the classes from Expanded had access to all of it's disciplines.

The classes from the original book, that get one of two disciplines from the Expanded book does not have that feature implemented yet.

I suspect, these are features that will arrive with great applause and the gratitude of the many, at some future date, but it doesn't hurt to mention them, in the off chance that their not being included now is a bug as the disciplines are present as part of the pack.

ShadowChemosh March 28th, 2017 10:56 AM

Quote:

Originally Posted by Skarn (Post 246972)
I have another Eberron bug report for CP17.

The template 'Horrid Animal' isn't adding +5 Natural Armor like it should, per Eberron Campaign Setting p. 289.

Thanks for the bug report.


Quote:

Originally Posted by Ualaa (Post 246973)
There are several Path of War: Expanded disciplines, which I can add to characters via Martial Training I (and later feats in that tree), which are not available to classes that get those disciplines as part of their classes.

I assume this is because the feats have been added, for Expanded, but the classes haven't been updated yet.
But that could also have been a bug, if they were supposed to have been added but were not.
Only one of the classes from Expanded had access to all of it's disciplines.

The classes from the original book, that get one of two disciplines from the Expanded book does not have that feature implemented yet.

I suspect, these are features that will arrive with great applause and the gratitude of the many, at some future date, but it doesn't hurt to mention them, in the off chance that their not being included now is a bug as the disciplines are present as part of the pack.

I honestly can not say if its a bug or not yet implemented. Too many things in the Pack to know off the top of my head. In addition any "recent" update to Pathfinder could cause something that use to work to no longer. This happened to Psionic powers in the last update. :(

If you could provide me with more details I would appreciate. Do you have a specific class and discipline that is not working/showing? That would help me to try and find the root cause allot faster.

Thanks! :)

Quintain March 28th, 2017 11:31 AM

Quote:

Originally Posted by ShadowChemosh (Post 246913)
I added the new tag "abCategory.PUPsiDisc". I have updated all the current Psion Disciplines to have this tag which is auto pushed to the hero if any Discipline is taken.

So for your script just have to test for this tag then.

Awesome. I'm working on the functionality of the ability, and I"m trying the following code to add 1 additional discipline

Code:

field[cGiveSpec].value += 1
I tried a forum search to figure out how to add an additional discipline (custom ability), but this didn't quite work. Any suggestions?

Edit: Nevermind. If found that this code needs to be fully qualified.

Note, this seems to be tied to the Psion class -- however, it may come about that a class other than the Psion may gain the discipline class feature. Is there any way to have this check not be tied to the class?

ShadowChemosh March 28th, 2017 01:07 PM

Quote:

Originally Posted by Quintain (Post 246991)
Note, this seems to be tied to the Psion class -- however, it may come about that a class other than the Psion may gain the discipline class feature. Is there any way to have this check not be tied to the class?

Take a look at Mathias's Location Location Location article. The hint is that it has to do with a "linkage".

Ualaa March 28th, 2017 03:07 PM

Quote:

Originally Posted by ShadowChemosh (Post 246987)
Thanks for the bug report.

If you could provide me with more details I would appreciate. Do you have a specific class and discipline that is not working/showing? That would help me to try and find the root cause allot faster.
Thanks! :)

Thank you.


Stalker
Correctly has: Broken Blade, Solar Wind, Steel Serpent, Thrashing Dragon, and Veiled Moon.

Expanded adds the option of one of: Riven Hourglass or Tempest Gale; neither is an option currently.



Warder
Correctly has: Broken Blade, Golden Lion, Iron Tortoise, and Primal Fury.

Expanded adds the option of one of: Eternal Guardian or Piercing Thunder; neither is an option currently.



Warlord
Correctly has: Golden Lion, Primal Fury, Scarlet Throne, Solar Wind, Thrashing Dragon.

Expanded adds the option of one of: Piercing Thunder or Tempest Gale; neither is an option currently.



Harbinger
Correctly has: Cursed Razor, Shattered Mirror, and Veiled Moon.

Is missing: Riven Hourglass and Scarlet Throne.



Mystic
Correctly has: Elemental Flux, Mithral Current, Riven Hourglass, Shattered Mirror, Solar Wind, Veiled Moon.

Is not missing anything.



Zealot
Correctly has: Eternal Guardian, Golden Lion, Sleeping Goddess, and Solar Wind.

Is missing: Piercing Thunder.

Roadie March 28th, 2017 05:55 PM

Also, in addition to the above for planning purposes, there's

- Unquiet Grave in Lords of the Night, which harbingers, mystics, stalkers, and warlords may swap one discipline for (gaining Knowledge (religion) as a class skill in the process)
- Chimera Soul in the Lords of the Wild playtest (still not a book yet, alas), which stalkers, mystics, zealots and the animal companion of the Ambush Hunter Ranger may swap one discipline for
- Fool's Errand in the Fool's Errand playtest (still not in a book yet), which any initiator may swap a discipline for, gaining Climb as a class skill in the process

(I've got a partial version of that last one put together already, so that's particularly on my mind.)

I'm not sure if there's a clean way to represent these three options without modifying the classes directly. My first thought was maybe as mini-archetypes that add a single ability with a chooser for the discipline to swap out, but the complications of validating swaps from two different places would be something to keep in mind.

Quintain March 28th, 2017 06:04 PM

Quote:

Originally Posted by ShadowChemosh (Post 246998)
Take a look at Mathias's Location Location Location article. The hint is that it has to do with a "linkage".

Ok, next question: Boosted Surge Ability from Mythic Psionics gives +1 to the Surge Blast value (which translates into an additional +1d6 to the damge).

The Surge Blast Ability is based on the #value[cWldWildSu] -- try as I might, I can't seem to add anything to either the Surge Blast abValue or the Wild Surge Value

Wild Surge timing is post-attributes 10000, and Surge Blast is Final Phase 50000

I'm attempting the value change by this code:

Code:

hero.child[cWldSurBla].field[abValue].value += 1
It should be simple..but can't get it to work.

Mathias March 28th, 2017 06:34 PM

Was closing a line of code with ";" a typo added as you pasted your work here?

Mathias March 28th, 2017 06:36 PM

Also, please give us error messages - Hero Lab lets you right-click and copy notify windows like error messages, so you can paste them alongside your code.

Not to mention timing - you're leaving out very important information - the phase & priority settings for your scripts.


All times are GMT -8. The time now is 10:00 AM.

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