Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - d20 System

Notices

Reply
 
Thread Tools Display Modes
Dimension76
Junior Member
 
Join Date: Jan 2017
Posts: 3

Old January 19th, 2018, 01:10 PM
Quote:
Originally Posted by Dami View Post
I get the -2 penalty to attacks when using a Tower Shield. (Just checked with a 1st Fighter) Maybe you have something that is reducing the penalty? (Or an unexpected +1 to attack from something else?)

Ooops, my bad. It was something else causing the -1. Sorry! No bug there
Dimension76 is offline   #741 Reply With Quote
Shaman964
Member
 
Join Date: May 2015
Posts: 34

Old February 1st, 2018, 12:24 AM
Somewhere in reworking the domains in this latest version it now no longer recognizes the extra domain one gets to choose as a Radiant Servant of Pelor between Glory and Purification.

The validation error states Glory: Your deity does not offer this domain.

The bonus domain is granted at 5th level for the PrC.

*****

Favored Soul now applies Deity's Weapon Specialization to all weapons and armor giving validation errors for each weapon not having Weapon Focus except for the actual Favored Weapon.

Last edited by Shaman964; February 1st, 2018 at 01:19 AM. Reason: Found another issue.
Shaman964 is offline   #742 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old February 1st, 2018, 04:02 AM
[QUOTE=Shaman964;262450]Somewhere in reworking the domains in this latest version it now no longer recognizes the extra domain one gets to choose as a Radiant Servant of Pelor between Glory and Purification.

The validation error states Glory: Your deity does not offer this domain.

The bonus domain is granted at 5th level for the PrC.[/quote

Ah. I see the problem. Quick fix: Open the Greyhawk Gazeteer and edit Pelor to add cdGlory2 and cdPurify2 as allowable domains.

Quote:
Originally Posted by Shaman964 View Post

*****

Favored Soul now applies Deity's Weapon Specialization to all weapons and armor giving validation errors for each weapon not having Weapon Focus except for the actual Favored Weapon.
I don't seem to be able to reproduce this. Can you provide more info and/or attach a portfolio that shows this problem?

Last edited by Sendric; February 1st, 2018 at 04:10 AM.
Sendric is offline   #743 Reply With Quote
Shaman964
Member
 
Join Date: May 2015
Posts: 34

Old February 1st, 2018, 08:01 PM
Here it is. Maybe I screwed something up in my settings.
Attached Files
File Type: email Ice Age Favored Soul.por (96.5 KB, 2 views)
Shaman964 is offline   #744 Reply With Quote
Dami
Senior Member
 
Join Date: Mar 2013
Location: Melbourne, Australia
Posts: 1,082

Old February 2nd, 2018, 01:58 AM
Quote:
Originally Posted by Shaman964 View Post
Here it is. Maybe I screwed something up in my settings.
I opened your character, and added a number of different weapons to the character. None of them got any extra attack bonus, only exactly what they should receive. No validation errors. Don't see anything happening with armor either.
If you were thinking of the "Adamantine Dagger" as having an extra +1 to attack, perhaps you are forgetting that its masterwork?

Current RPG's: Pathfinder (GM), Pathfinder (Player), Gamma World (GM, Pathfinder homebrew).
HeroLab: 3.5 & Pathfinder. HL User Files for PF: Greyhawk Setting, Gamma World (WIP).

DM and player of D&D since 1980.

Last edited by Dami; February 2nd, 2018 at 02:01 AM.
Dami is offline   #745 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old February 2nd, 2018, 03:33 AM
Quote:
Originally Posted by Shaman964 View Post
Here it is. Maybe I screwed something up in my settings.
I'm seeing the validation reports, and will look into what's causing them. Thanks.

Update: Looks like I failed to properly update the Weapon Specialization feat with the most recent update. To fix this issue, open the Custom - Core Book Mods file in the editor, and replace the entire eval script for fWepSpec2 with the following:

Code:
      ~ If we're disabled, do nothing
      doneif (tagis[Helper.FtDisable] <> 0)
      
      ~ Set focus from the drop down or the Target.? tag
      var id   as string
      var name as string
      call fTargetId
      ~ We can't do anything without a unique id
      doneif (empty(id) <> 0)

      ~ Assign the appropriate tag to all weapons that meet the criteria
      foreach pick in hero where "IsWeapon." & id
        perform eachpick.assign[Broadcast.WepSpec]
        nexteach

      ~ Set our 'short name'
      field[fShortName].text = "Spec: " & name
        
      ~ Forward the weapon specialization tag for the weapon to the hero
      perform hero.assignstr["WepSpec." & id]

Last edited by Sendric; February 2nd, 2018 at 04:00 AM.
Sendric is offline   #746 Reply With Quote
Shaman964
Member
 
Join Date: May 2015
Posts: 34

Old February 2nd, 2018, 07:11 PM
I get the following error when I compile it.

Thing 'cFASDeiWeS' - Condition phase/priority (First/9999) for bootstrap thing 'fWepSpec2' occurs after earliest rule/script (First/100)

Not sure if I screwed it up but thank you for your patience and help.

Edit: Switched First to Levels and it looks like it is working now. Please let me know if it should be something else.

Last edited by Shaman964; February 2nd, 2018 at 08:09 PM. Reason: Think I fixed it.
Shaman964 is offline   #747 Reply With Quote
Dark_Soul
Member
 
Join Date: Mar 2016
Posts: 55

Old February 3rd, 2018, 09:51 AM
I've got another error regarding Weapon Specialization:

Invalid tag expression specified for 'foreach' statement
Location: 'eval' script for Thing 'fWepSpec2' (Eval Script '#1') near line 12

It seems to apply correctly, but continues popping up pretty much whenever I do anything else.
Dark_Soul is offline   #748 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old February 3rd, 2018, 11:17 AM
Quote:
Originally Posted by Shaman964 View Post
I get the following error when I compile it.

Thing 'cFASDeiWeS' - Condition phase/priority (First/9999) for bootstrap thing 'fWepSpec2' occurs after earliest rule/script (First/100)

Not sure if I screwed it up but thank you for your patience and help.

Edit: Switched First to Levels and it looks like it is working now. Please let me know if it should be something else.
That's fine. It shouldn't have been on "first" anyway. The community set version's script runs at Pre-Levels/5000.
Sendric is offline   #749 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old February 3rd, 2018, 11:19 AM
Quote:
Originally Posted by Dark_Soul View Post
I've got another error regarding Weapon Specialization:

Invalid tag expression specified for 'foreach' statement
Location: 'eval' script for Thing 'fWepSpec2' (Eval Script '#1') near line 12

It seems to apply correctly, but continues popping up pretty much whenever I do anything else.
I was seeing this before I replaced the current script. You need to completely erase the script currently in the community set and replace it with the above script.
Sendric is offline   #750 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 04: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.