• 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

HL Editor Help: Ring that mimics Divination School Bonus Spells

Daemoro

New member
I have done some very simple custom items and spells, but my GM gave me a Ring that has me completely stumped, it has two effects:

1st-It gives me 1 Divination Spell per known spell level just like the Divination School Specialization of the Wizard Class. I thought I could just find that section in the class script somewhere and copy it over into a ring but I can't seem to find what I need. This would basically give my character 2 bonus Divination spells per level so the script would have to add the extra spells to the existing bonus ones.

2nd-The ring gives a +1 Caster Level for Divination Spells only. I couldn't even begin to think of a way to make this happen automagically so I figure this is one of those things that might have to be paced in a note and put in manually when I cast a Divination spell but any ideas would be welcome.

Thanks!
 
1 - Since it sounds like your character is already a wizard with bonus spells, I believe all you would need to do is add +1 to the cSecSplReq field on the wizard class helper.

2 - Take a look at the Aquatic bloodline of the sorcerer (from the APG). It adds +1 CL for spells of the water subschool. Perhaps you can adapt that to add to the divination school instead?
 
1 - Since it sounds like your character is already a wizard with bonus spells, I believe all you would need to do is add +1 to the cSecSplReq field on the wizard class helper.
This is on the Wizard Class Helper Thing cHelpWiz.

So the script would look like so:
Code:
hero.child[cHelpWiz].field[cSecSplReq].value += 1

2 - Take a look at the Aquatic bloodline of the sorcerer (from the APG). It adds +1 CL for spells of the water subschool. Perhaps you can adapt that to add to the divination school instead?
Bloodlines like many things that are choices are "Custom Abilities" and found on the "Class->Custom Ability" tab in the editor. You can do a "New (Copy)" to look at the bloodline.

If the above still sounds like greek I would advise reading the Glossary of Terms and read FAQ#2 for all the places to learn about the editor. It has links to videos. :)
 
Thanks.

I had read those pages but will re-read them and watch the videos again. Maybe now that I've poked around some I will retain more than the first time :)

It would help if I had more "free days" to sit and work through things without big breaks in between, but such is the life of responsible adults :/
 
It would help if I had more "free days" to sit and work through things without big breaks in between, but such is the life of responsible adults :/
Such a true thing. Stupid real life getting in the way. :p

I actually "evaluated" Hero Lab when I first got it for 9 months before buying because I kept trying to input my houserules and got interrupted.

But the more you do in HL the easier it gets as it has a good number of standards it follows which helps.
 
Back
Top