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
chiefweasel
Senior Member
 
Join Date: Aug 2008
Location: Miamisburg, OH
Posts: 1,322

Old February 11th, 2009, 09:14 PM
Does anyone know if there is a way to determine if a char has Bardic Music or at least 1 level of arcane spell use? I know for the bards there is something called, Hbardic but I cant find what it is exactly. Some feats require these things as prerequisites but I have no idea how to check for them. Any help would be great, thanks.
chiefweasel is offline   #1 Reply With Quote
Mathias
Senior Member
Lone Wolf Staff
 
Join Date: May 2005
Posts: 13,213

Old February 12th, 2009, 07:20 AM
To find these, first make sure that "enable data file debugging" is checked at the top of the develop menu. Now, add a level of Bard, go to the develop menu, the last item is "Floating Info Windows" - choose "Show Selection List", and scroll through that list until you find that Bardic Music is hBrdMusic.

Here's how to write a pre-req that looks for that:
@valid = hero.pickexists[hBrdMusic]

For ability to use arcane spells, how about this pre-req from the Arcane Archer prestige class:
Code:
        if (tagcount[Hero.Arcane] >= 1 + 1) then
          @valid = 1
          endif
A character gets one Hero.Arcane tag for every level of spells they are able to cast, so this prereq, in the ">= 1 + 1" portion, is checking whether the character has the ability to cast 0-level spells + the ability to cast 1st-level spells.

Therefore, to check for the ability to cast arcane spells, you only need to check for:

@valid = tagis[Hero.Arcane]

What you're actually testing for there is the ability to cast cantrips.
Mathias is offline   #2 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 09:51 PM.


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