Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - Pathfinder Roleplaying Game

Notices

Reply
 
Thread Tools Display Modes
Quintain
Senior Member
 
Join Date: Feb 2012
Posts: 546

Old April 28th, 2017, 08:58 PM
Shadow,

Going to need some additional help. The Mythic Improved Psicrystal feat doubles the bonus granted by the Psicrystal personality (generally +3).

I haven't been able to parse the psicrystal code enough to determine what needs to be done to double the bonus of what ever is picked on the psicrystal minion.

Would be appreciated.
Quintain is offline   #21 Reply With Quote
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old April 28th, 2017, 09:58 PM
Quote:
Originally Posted by Quintain View Post
Shadow,

Going to need some additional help. The Mythic Improved Psicrystal feat doubles the bonus granted by the Psicrystal personality (generally +3).

I haven't been able to parse the psicrystal code enough to determine what needs to be done to double the bonus of what ever is picked on the psicrystal minion.

Would be appreciated.
Assign the tag "MythicPsi.PsicrBon2x" to the hero at Post-Level/10000 that will double the Bonus value.

Well after you do a new pull from GitHub.

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.
ShadowChemosh is offline   #22 Reply With Quote
Quintain
Senior Member
 
Join Date: Feb 2012
Posts: 546

Old April 29th, 2017, 07:05 AM
Quote:
Originally Posted by ShadowChemosh View Post
Assign the tag "MythicPsi.PsicrBon2x" to the hero at Post-Level/10000 that will double the Bonus value.

Well after you do a new pull from GitHub.
Note that the ability doubles all personality bonuses, not just a single one that is picked.

Note that there is a Psicrystal Staff item that does the same doubling. So, if you could put in a double double (triple) option in the new code that would be appreciated.
Quintain is offline   #23 Reply With Quote
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old April 29th, 2017, 03:03 PM
Quote:
Originally Posted by Quintain View Post
Note that the ability doubles all personality bonuses, not just a single one that is picked.
You need to explain this more. I am reading the feat right now and it just says "The bonus gained from all of your psicrystal personalities doubles.". So in example +2 becomes +4 and +3 becomes +6. That is what I see the script doing. What I am missing?

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; April 29th, 2017 at 04:20 PM.
ShadowChemosh 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 April 29th, 2017, 04:20 PM
Quote:
Originally Posted by Quintain View Post
Note that there is a Psicrystal Staff item that does the same doubling. So, if you could put in a double double (triple) option in the new code that would be appreciated.
I have modified the procedure to increase the multiplier by one for each additional MythicPsi.PsicrBon2x past the first that is found on the hero.

So just script the staff to do the same tag assign to the hero.

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.
ShadowChemosh is offline   #25 Reply With Quote
Quintain
Senior Member
 
Join Date: Feb 2012
Posts: 546

Old April 29th, 2017, 04:31 PM
Quote:
Originally Posted by ShadowChemosh View Post
You need to explain this more. I am reading the feat right now and it just says "The bonus gained from all of your psicrystal personalities doubles.". So in example +2 becomes +4 and +3 becomes +6. That is what I see the script doing. What I am missing?
You are correct in that that is specifically what the feat does.

However, in the scenario wherein the character has a psicrystal (+3 to an skill), a psicrystal staff (x2) and this mythic feat would have a tripling of the skill bonus, not a x4. This calculation is the same as for crit multiplier (x2 + x2 = x3).

So, +3 originally, +6 with psicrystal staff, +3 again from mythic feat. = +9 total.
Quintain is offline   #26 Reply With Quote
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old April 29th, 2017, 05:37 PM
Quote:
Originally Posted by Quintain View Post
You are correct in that that is specifically what the feat does.

However, in the scenario wherein the character has a psicrystal (+3 to an skill), a psicrystal staff (x2) and this mythic feat would have a tripling of the skill bonus, not a x4. This calculation is the same as for crit multiplier (x2 + x2 = x3).

So, +3 originally, +6 with psicrystal staff, +3 again from mythic feat. = +9 total.
Yep that is what my post #25 says I did for the logic in the Procedure. So sounds like we are on the same page then.

So first time tag is found we are x2 bonus. If two tags are found we are x3, if three tags are found we are x4, etc...

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.
ShadowChemosh is offline   #27 Reply With Quote
Quintain
Senior Member
 
Join Date: Feb 2012
Posts: 546

Old April 29th, 2017, 10:14 PM
Quote:
Originally Posted by ShadowChemosh View Post
Yep that is what my post #25 says I did for the logic in the Procedure. So sounds like we are on the same page then.

So first time tag is found we are x2 bonus. If two tags are found we are x3, if three tags are found we are x4, etc...
Fantastic.
Quintain is offline   #28 Reply With Quote
Quintain
Senior Member
 
Join Date: Feb 2012
Posts: 546

Old April 30th, 2017, 07:18 PM
Ok, I've reached the point where I can add the Mythic Powers.

I've looked at some mythic spells and there is a mythic text field in the form for creating new spells. No such field exists for powers.

I think this needs to be added prior to being able to continue.
Quintain is offline   #29 Reply With Quote
ShadowChemosh
Senior Member
Volunteer Data File Contributor
 
Join Date: Jan 2010
Location: Chicago, IL (USA)
Posts: 10,729

Old April 30th, 2017, 07:53 PM
Quote:
Originally Posted by Quintain View Post
Ok, I've reached the point where I can add the Mythic Powers.

I've looked at some mythic spells and there is a mythic text field in the form for creating new spells. No such field exists for powers.

I think this needs to be added prior to being able to continue.
Sure feel free to ask LW to add such logic.

Otherwise just add it as text as part of the normal power text.

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.
ShadowChemosh is offline   #30 Reply With Quote
Reply

Thread Tools
Display Modes

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 11:25 PM.


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