• 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

Changeling Wizard AFC

So, I've been poking at the various editor files and finding a great deal of enjoyment at my learning.

I started examining the various AFCs and do not know how to add a second specialization to a character. i assume this is a script area to poke at, but am not sure?

Any suggestions?
 
So, I've been poking at the various editor files and finding a great deal of enjoyment at my learning.

I started examining the various AFCs and do not know how to add a second specialization to a character. i assume this is a script area to poke at, but am not sure?

Any suggestions?

I don't know what you mean by AFC, but if you want to modify the number of specialties a wizard has, it's easy enough to do. All you need to do is modify the cGiveSpec field of cHelpWiz. This field controls how many custom abilities the class needs to choose. You can increase it thusly:

Code:
hero.child[cHelpWiz].field[cGiveSpec].value += 1

If you would like to find an example of this type of thing in use, I recommend grepping through the files and searching for "cGiveSpec". If you do not have GREP, you should get it (you can google search for Windows Grep if you are using a PC).

I find grep to be an invaluable tool for finding snippets of code I can use for reference.
 
ACF I mean, sorry. The Changeling Wizard Alternate Class feature.

Thanks for the tips!! I'll grab GREP (I am on PC). Appreciate the direction.
 
Back
Top