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
Frodie
Senior Member
 
Join Date: May 2007
Location: Durham, NC
Posts: 1,747

Old September 5th, 2014, 07:06 PM
Ah, I'll get it. Ok, I see it not the sub-type but just the template.

Last edited by Frodie; September 6th, 2014 at 05:20 AM.
Frodie is offline   #21 Reply With Quote
Frodie
Senior Member
 
Join Date: May 2007
Location: Durham, NC
Posts: 1,747

Old September 6th, 2014, 07:48 AM
Well, it seems they only want to replace the att HP bonus from Con with Wis. And leave everything else alone.

Using this script replaces everything - hero.childfound[aCON].field[aModBonus].value = hero.childfound[aWIS].field[aModBonus].value

So I am trying this, but I think my timing is off. It only the modifies to HP once.

Post Att 10000

herofield[tBonusHP].value -= hero.child[aCON].field[aModBonus].value
herofield[tBonusHP].value += hero.child[aWIS].field[aModBonus].value

So that is where I am stuck, ATM. Any ideas?


Also tried with same results - hero.child[Totals].field[tBonusHP].value += hero.child[aWIS].field[aModBonus].value

Last edited by Frodie; September 6th, 2014 at 07:57 AM.
Frodie is offline   #22 Reply With Quote
karrel
Senior Member
 
Join Date: Jan 2012
Location: United States
Posts: 148
Send a message via MSN to karrel

Old September 6th, 2014, 09:55 AM
this is from the monks ac bonus, you might try working with it, it is on the class special (ac bonus:monk):

~ Start our bonus off as our wisdom bonus + the count of specials, -1
~ (because our first instance gives a base of +0)
field[abValue].value += #attrbonus[aWIS] + field[xCount].value - 1

this is on the Vampire, Nosferatu template:

~ We don't have a CON score, being undead
~perform hero.child[aCON].assign[Helper.NoScore]

this from undead traits:

~we don't have a CON score
perform hero.child[aCON].assign[Helper.NoScore]

~undead use their CHA mod in place of their CON mod
perform hero.child[aCON].assign[AttrSub.aCHA]

so you might try : perform hero.child[aCON].assign[AttrSub.aWIS]

Last edited by karrel; September 6th, 2014 at 10:33 AM.
karrel is offline   #23 Reply With Quote
karrel
Senior Member
 
Join Date: Jan 2012
Location: United States
Posts: 148
Send a message via MSN to karrel

Old September 6th, 2014, 10:53 AM
~we don't have a CON score
perform hero.child[aCON].assign[Helper.NoScore]

~undead use their CHA mod in place of their CON mod
perform hero.child[aCON].assign[AttrSub.aWIS]

the above will set so Hp bonus is set to Wis but it make the toon not have a Con score.
karrel is offline   #24 Reply With Quote
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old September 6th, 2014, 11:33 AM
Quote:
Originally Posted by karrel View Post
~we don't have a CON score
perform hero.child[aCON].assign[Helper.NoScore]

~undead use their CHA mod in place of their CON mod
perform hero.child[aCON].assign[AttrSub.aWIS]

the above will set so Hp bonus is set to Wis but it make the toon not have a Con score.
Have you tested just using the AttrSub tag alone? Logically you don't have to use Helper.NoScore with it at the same time.

Code:
~ Use WIS mod in place of CON mod
perform hero.child[aCON].assign[AttrSub.aWIS]
Update: Yep it appears AttrSub.? only works when you have the Helper.NoScore.

Hero Lab Resources:
Pathfinder - d20pfsrd and Pathfinder Pack Setup
3.5 D&D (d20) - Community Server Setup
5E D&D - Community Server Setup
Hero Lab Help - Hero Lab FAQ, Editor Tutorials and Videos, Editor & Scripting Resources.
Created by the community for the community
- Realm Works kickstarter backer (Alpha Wolf) and Beta tester.
- d20 HL package volunteer editor.

Last edited by ShadowChemosh; September 6th, 2014 at 11:55 AM.
ShadowChemosh is offline   #25 Reply With Quote
karrel
Senior Member
 
Join Date: Jan 2012
Location: United States
Posts: 148
Send a message via MSN to karrel

Old September 6th, 2014, 11:57 AM
added it to the template and it still uses con
karrel is offline   #26 Reply With Quote
karrel
Senior Member
 
Join Date: Jan 2012
Location: United States
Posts: 148
Send a message via MSN to karrel

Old September 6th, 2014, 01:59 PM
ok the top part of this works but it removes con score, what im trying to do here is get the template to base bonus Hp off of the WIs score not con;

~we don't have a CON score
perform hero.child[aCON].assign[Helper.NoScore]

~undead use their WIS mod in place of their CON mod
perform hero.child[aCON].assign[AttrSub.aWIS]


tried adding the this but it set thing back to normal:

~ If we have no CON, remove the tag
if (hero.child[aCON].tagis[Helper.NoScore] <> 0) then
perform hero.child[aCON].delete[Helper.NoScore]
endif

any ideas about this guys
karrel is offline   #27 Reply With Quote
Frodie
Senior Member
 
Join Date: May 2007
Location: Durham, NC
Posts: 1,747

Old September 6th, 2014, 02:53 PM
Here is what I have so far. I am stuck on the HP issue. Can't seem to just use Wisdom for only HP.

I am still working on the Ally of the Night feat. It adds the minion. I just need to find a way to add the level count for the added abilities.
Attached Files
File Type: email PFRPG_NNW_Liber_Vampyr.user (75.4 KB, 1 views)
Frodie is offline   #28 Reply With Quote
Frodie
Senior Member
 
Join Date: May 2007
Location: Durham, NC
Posts: 1,747

Old September 7th, 2014, 09:53 AM
A "BIG" Thank you to Shadow for getting the Hit Point issue corrected.

I also got the "Ally of the Night" feat fixed with all the familiar abilities able to work.

Now that that is done, I'll get back to the feats.
Attached Files
File Type: email PFRPG_NNW_Liber_Vampyr.user (74.7 KB, 3 views)
Frodie is offline   #29 Reply With Quote
karrel
Senior Member
 
Join Date: Jan 2012
Location: United States
Posts: 148
Send a message via MSN to karrel

Old September 7th, 2014, 10:30 AM
dude it is looking awsome, heck of lot better then what i could have ever done. Thnks to all that are making this project come together, I think this would be a great book for Lone Wolf to add officaly and give you all the credit you guys deserve
karrel is offline   #30 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 02:18 AM.


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