Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - d20 System
Register FAQ Community Today's Posts Search

Notices

Reply
 
Thread Tools Display Modes
zhoufengrong
Junior Member
 
Join Date: Oct 2014
Location: New Jersey, USA
Posts: 3

Old October 9th, 2014, 02:39 PM
Hello. I'm new to the forums and to Hero Lab in general. I have a question about adding the kundala class from the Book of Erotic Fantasy. I've skimmed the tutorials, but I have to admit I'm stumped on adding complex special abilities to the class.

Specifically, the kundala gets an ability called Blessings of the Wise. This ability gives the character a bonus to all saving throws equal to his/her Wisdom bonus. How would I add that?

Thanks in advance
zhoufengrong is offline   #1 Reply With Quote
TobyFox2002
Senior Member
 
Join Date: Nov 2013
Location: Andover, Ma
Posts: 632

Old October 12th, 2014, 10:28 PM
I actually have a Kundala class (and some other material) from the BoEF, made. If you want a copy of it I'd be happy send it to you.

But to answer your question you'd use the following code:

Post-Attributes/10000
Code:
      ~ If we're not shown, just get out now
      doneif (tagis[Helper.ShowSpec] = 0)

      var bonus as number
      bonus = hero.child[aWIS].field[aModBonus].value

      hero.child[vFort].field[Bonus].value = hero.child[vFort].field[Bonus].value + bonus
      hero.child[vRef].field[Bonus].value = hero.child[vRef].field[Bonus].value + bonus
      hero.child[vWill].field[Bonus].value = hero.child[vWill].field[Bonus].value + bonus
TobyFox2002 is offline   #2 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old October 13th, 2014, 04:58 AM
You can also shortcut the following bit:

Code:
      hero.child[vFort].field[Bonus].value = hero.child[vFort].field[Bonus].value + bonus
      hero.child[vRef].field[Bonus].value = hero.child[vRef].field[Bonus].value + bonus
      hero.child[vWill].field[Bonus].value = hero.child[vWill].field[Bonus].value + bonus
to this:

Code:
      hero.child[vFort].field[Bonus].value += bonus
      hero.child[vRef].field[Bonus].value += bonus
      hero.child[vWill].field[Bonus].value += bonus
Sendric is offline   #3 Reply With Quote
TobyFox2002
Senior Member
 
Join Date: Nov 2013
Location: Andover, Ma
Posts: 632

Old October 13th, 2014, 07:04 AM
Right... Its been months since I did anything with it, back when I knew next to nothing thanks for catching this for me. Kinda obvious once you pointed it out.. lol

Quote:
Originally Posted by Sendric View Post
You can also shortcut the following bit:

Code:
      hero.child[vFort].field[Bonus].value += bonus
      hero.child[vRef].field[Bonus].value += bonus
      hero.child[vWill].field[Bonus].value += bonus
TobyFox2002 is offline   #4 Reply With Quote
zhoufengrong
Junior Member
 
Join Date: Oct 2014
Location: New Jersey, USA
Posts: 3

Old October 13th, 2014, 12:11 PM
Thank you both very much for the help. And sure, Toby, I'd love to see your work. I can compare your kundala to mine and see how badly I did.
zhoufengrong is offline   #5 Reply With Quote
TobyFox2002
Senior Member
 
Join Date: Nov 2013
Location: Andover, Ma
Posts: 632

Old October 13th, 2014, 12:45 PM
I'll go back and touch it up, and add source information to the file and post it as soon as I get a chance.
TobyFox2002 is offline   #6 Reply With Quote
TobyFox2002
Senior Member
 
Join Date: Nov 2013
Location: Andover, Ma
Posts: 632

Old October 18th, 2014, 08:15 AM
I am really sorry about the delay, it took longer than I thought it would to source everything.

The file is far from complete and will very likely, never be contained in Lawful_G pack. The material contained within is highly adult, I don't have any immediate plans to add to this file but in the future I probably will.

Please note that using the metaphysical spellshaper with other classes/feats/abilities that reduce Metamagic cost WILL CAUSE SERIOUS ERRORS if you reduce the cost of metamagics to a zero or negative value.

EDIT: I cannot upload the file as it is larger than what forum uploads permit, as follows is the dropbox link.

https://www.dropbox.com/s/680s9e4l3v...Only.user?dl=0
TobyFox2002 is offline   #7 Reply With Quote
zhoufengrong
Junior Member
 
Join Date: Oct 2014
Location: New Jersey, USA
Posts: 3

Old October 22nd, 2014, 01:57 PM
Thanks again, Toby. And no worries about the delay.

Last edited by zhoufengrong; October 22nd, 2014 at 02:04 PM.
zhoufengrong is offline   #8 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:13 PM.


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