Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - Pathfinder Roleplaying Game
Register FAQ Community Today's Posts Search

Notices

Reply
 
Thread Tools Display Modes
Kalladar
Member
 
Join Date: Aug 2013
Location: Lenexa, KS
Posts: 71

Old January 13th, 2015, 12:27 AM
The craftsmaster feat from the secrets of adventuring states the user adds his wisdom bonus to crafting skills in addition to his intelligence modifier. I looked through the forums and saw the skillover field, but think this replaces the skill attribute modifier used. It should be a simple matter to correct this feat and I can create one that uses the same wording, but how should the script go?

Thanks.

Kal.
Kalladar is offline   #1 Reply With Quote
Portilis
Senior Member
 
Join Date: Feb 2013
Location: Blandford, UK
Posts: 164

Old January 13th, 2015, 01:54 AM
Without looking at specifics, I'd suggest that what you need to do is grab the final calculated modifier for the additional stat and apply that as a circumstance bonus to the skill.
Portilis is offline   #2 Reply With Quote
Fuzzy
Senior Member
 
Join Date: Jul 2012
Posts: 416

Old January 13th, 2015, 03:18 AM
You'd loop through all skills on the hero, check if it's a craft skill (look for the Helper.SkCatCraft tag) , and if so, apply the bonus. Not sure on the exact wording of the feat in question, so not exactly sure what type of bonus it applies, but you'd then apply that kind of bonus to each of those skills.
Fuzzy is offline   #3 Reply With Quote
Fuzzy
Senior Member
 
Join Date: Jul 2012
Posts: 416

Old January 13th, 2015, 03:23 AM
Without significantly testing it, I'd try something like this in Post-Attributes:
Code:
field[abValue].value = #attrmod[aWIS]

foreach pick in hero where "Helper.SkCatCraft"
    #applybonus[BonInsight,eachpick,field[abValue].value]
nexteach

Last edited by Fuzzy; January 13th, 2015 at 03:29 AM.
Fuzzy is offline   #4 Reply With Quote
Aaron
Senior Member
 
Join Date: Oct 2011
Posts: 6,793

Old January 13th, 2015, 03:37 AM
Since he didn't specify the bonus was typed, I would go with:

PostAttr 10000
Code:
field[abValue].value += #attrmod[aWIS]

foreach pick in hero where "Helper.SkCatCraft"
   eachpick.field[Bonus].value += field[abValue].value
   nexteach
Aaron is offline   #5 Reply With Quote
Fuzzy
Senior Member
 
Join Date: Jul 2012
Posts: 416

Old January 13th, 2015, 03:53 AM
Right, I was guessing that the actual feat text DID describe a bonus type (Rite is usually decent at doing so), and he just didn't state that in the OP for brevity. Obviously, it would have to be tailored to the actual bonus type.
Fuzzy is offline   #6 Reply With Quote
Kalladar
Member
 
Join Date: Aug 2013
Location: Lenexa, KS
Posts: 71

Old January 13th, 2015, 04:26 PM
Thanks for the help. I will work with these. Thanks again.

Kal
Kalladar is offline   #7 Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 12:55 AM.


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