• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Bug Reports - Community Created 3.5 D&D data set

ShadowChemosh

Well-known member
Please post any bug reports, and ONLY bug reports, found in the Community Created 3.5 D&D data set.... in this thread. In example if a feat or a Domain is not working please post here to let us know about it.

If you are an editor of the data set please post any issues to the correct thread in the User Projects forum.

For questions or other issues feel free to PM Sendric or ShadowChemosh. You can also email me at ShadowChemosh(at)yahoo(dot)com.

Thanks
 
Last edited:
Duskblade can have a familiar (or improved familiar) if the proper feats are selected. When these feats are chosen, the button to add a familiar doesn't display.
 
Natural Bond is almost there, but not quite. I shall try to solve this problem myself, but as the code is written, there is the possibility that a character will receive an incorrect bonus from this feat. Let me explain with an example.

If you have a 6th level ranger/5th level druid, you set up a condition that won't give the ranger the correct effective level of druid. The total level (11) minus the druid level (5) gives a bonus of 6, and the minimum of 3 and 6 is 3. So, then the ranger has it's effective level increased by 3. The effective level of a Ranger is 3 (one-half his level) plus the 3 from natural bond equal 6, which exceeds the druid's level.

What, in fact, needs to be done, is a comparison of the effective level of druid to the actual druid level. I'll try to work on that and get back to you.

EDIT: Ok, just realized this is stacking. Still needs fixing but it's not as bad as I first thought. All that needs to be done is to subtract the character's effective druid level from it's total level (not the actual druid level, since a single class ranger would have no druid levels but does have effective druid levels for the purposes of animal companions). So, I'm going to try to subtract hero.childfound[cAnimClass].field[CompClLev].value from the total character level instead of the total level of druid.

EDIT2: I also had to move it to Post-Levels, but that doesn't give the correct Class Level to the Companion. Here's the problem, the class levels of the companion are determined at First 497, but the actual levels of the character are not done until 500. Trying to sync these two things is impossible (first the companion level is determined, then your effective level is determined, but it can't retroactively get the correct effective level back on the companion). This is an issue with HL and not with the coding, as far as I can tell. Trying to solve it, but don't know if it is possible.

Solution (at First/499):
Code:
~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)

~ If we are within range of our effective druid level.
var bonus as number
bonus = #totallevelcount[] - hero.childfound[cAnimClass].field[CompClLev].value 
bonus = minimum(bonus,3)

~Only do stuff if the animal companion is live.
if (hero.childlives[cAnimComp] <> 0) then
  ~ Add 3 to our companion level.
  hero.childfound[cAnimClass].field[CompClLev].value += bonus
  hero.childfound[cAnimComp].field[CompLevBas].value += bonus
  hero.childfound[cAnimComp].field[CompLevel].value += bonus
endif
 
Last edited:
I've actually cleaned up Natural Bond by reducing alot of the code. If interested in a cleaner version, here it is.

First/498
Code:
~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)

~ If we are within range of our effective druid level.
var bonus as number
bonus = #totallevelcount[] - hero.childfound[cAnimClass].field[CompClLev].value 
bonus = minimum(bonus,3)

~ Add bonus to our companion level.
hero.childfound[cAnimClass].field[CompClLev].value += bonus
 
I've actually cleaned up Natural Bond by reducing alot of the code. If interested in a cleaner version, here it is.
Thank you for this. We will be taking a look at it. It may not make it into 1.5 as just too many changes happened in v3.7 of HL that is slowing me down. But it will make it into 1.6 for sure.

Thanks
 
Orphans after Lawful G 1.5

So I downloaded Lawful G 1.5 and upon firing up my current d20 character I got:

Pick 'sWizCAReMD' has been orphaned due to missing thing in batch '117'
Pick 'sWizCAReMD' has been orphaned due to missing thing in batch '127'

Did a "save as" on the character with a different name and the error doesn't happen when I open that new version but does trigger when I re-open the original file.

So is this something I need to fix on my end or is it something that needs to be fixed with LG 1.5?

Sorry to be a fly in the ointment,
Nigel Fogg, aka The Wayfarer
 
The Domination Domain in Spell Comp Domains.user should grant the bonus feat Spell Focus and have the prerequisite for the school being Enchantment.
 
Got a weird error since I updated. "sWizCAReMD" has been orphaned in batch 117.
And "fSpellFoc" has been orphaned in bootstrap 175. (I think this is from the Domination Domain I edited to give the bonus feat Spell Focus)
 
Pick 'sWizCAReMD' has been orphaned due to missing thing in batch '117'
Pick 'sWizCAReMD' has been orphaned due to missing thing in batch '127'
This is caused by the fact that the Complete Arcane cantrip "Repair Minor Damage" was removed. The idea was that the Spell Compendium version of the spell was the one that was to be used but cantrips are ALWAYS bootstrapped to ALL characters. *sigh*

Will have to work on a better way of doing this in the future maybe by hiding the Thing instead.

So is this something I need to fix on my end or is it something that needs to be fixed with LG 1.5?
Actually neither. The thing is gone so HL is just letting you know. The Spell Compendium spell is now marked to both Books so that version of the Cantrip will now appear instead. Technically other then the message you should not notice any issues. If you do plz let me know.

Simply make any change to your character and save it again as that will fix it so that HL no longer tells you about the missing cantrip when you open your character.

Sorry about this everyone. Will see if we can work on a better way of doing this in the future.
 
I've fixed the pre-reqs for the Libris Mortis Feats and added the eval scripts for that. It should be in 1.6.
 
Book of Exalted Deeds

When I select the feat Vow of Poverty for 2nd level it does not give me the option to add a bonus exalted feat. I'm unsure what additional information you may need.

Also I just want to say thank you for all the hard work you put into this collection of data!
 
When I select the feat Vow of Poverty for 2nd level it does not give me the option to add a bonus exalted feat. I'm unsure what additional information you may need.

Also I just want to say thank you for all the hard work you put into this collection of data!
Thanks for the report we will look into this.
 
Added all the MM V1.6 files into HL data folder. Now encountering multiple duplicate thing errors even after deleteing the original V1.5 release files.

Have reverted back to the V1.5 files for now.
 
Last edited:
Added all the MM V1.6 files into HL data folder. Now encountering multiple duplicate thing errors even after deleteing the original V1.5 release files.
Bodrin plz don't post in here for new release issue. This is for the community to post issues about fully tested working releases not releases in the works.

Plz see d20 Release 1.6 Testing and Integration... thread for this info and the answer to why you are getting duplicate issues.
 
The race Mad Gnome from Races of Ansalon has the incorrect base speed. The speed should be 20 not 30. The file is named RoA - Races.user.
 
The Glory domain spells show two selections of each.
spell level: 6 , domain spell: bolt of glory : sDGloBoltG & sDGlo60000
spell level: 8 , domain spell: crown of glory : sDGloCrGlo & sDGlo80000
 
Back
Top