• 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

Making House Rules

AndrewD2

Well-known member
How would one go about setting up house rules that show up as possible selections in the configure hero section? I was looking through the editor and not sure which tab I would use and I couldn't find any to copy to examine.

What I'm looking to setup is a way to take something without meeting the prerequisites, but not having it work until you do.

For example, a first level rogue taking Weapon Focus(dagger) but it wouldn't start working until 2nd level when it gets the +1 BAB. I know it can just be doing through adjustments, but some of my players just aren't that savvy so to speak.

Thanks,

Andrew
 
I have wanted to make a Video on this but not had the time. Don't have allot of time to go into detail but the simplest method is to do this from inside the editor.

The bottom most blue button on most Things is called "Sources". That is what controls the "Sources" or books you see from "Configure Your Hero".

So click Sources button and then click on "- New Source -" and fill out the new window:
Source Name - Name you will see from Configure Your Hero.
Source Unique iD - The New Tag ID only be 10 letters and should be unique.
Parent Source - The parent to this new child source. Defaults to User Parent its a good place to put your stuff.
 
Last edited:
Hmm, I get that part, but what about the part about taking feats without the prereqs and them not kicking in until its met?

I'm not sure which tab I'd look under or even how to setup something that affects every character from the start.
 
Hmm, I get that part, but what about the part about taking feats without the prereqs and them not kicking in until its met?

I'm not sure which tab I'd look under or even how to setup something that affects every character from the start.

To do that, you could use a doneif statement in the eval script that determines if the requirements are met before applying the bonus. Something like:

Code:
 doneif (hero.child[Attack].field[tAtkBase].value < 1)
 
So as I gather I'd have to redo EVERY feat in order to accomplish this :-/ Hmm, maybe that wouldn't be the best idea.
 
Back
Top