• 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

Expanding class skill list

Firelok

New member
I have made a new skill and want to add it to martial type classes. It is showing up on the Skills tab, but I can't find where the class skill lists are defined. Can anyone point me in the right direction?
 
Skills granted a class are defined in the class definition.

The only way to give this to a class as an option is to use the extend functionality and extend the AllowSkl1.XXX group.tag to every class that gets this as an option or ProfSkill.XXX if it's automatically proficient.

So, go to the editor, General Tab, *Extend Thing subtab and for every class (cBarbarian, cFighter, etc.) you'll create an entry that would look like:

Thing Unique ID - Group ID - Tag ID
cBarbarian - AllowSkl1 - skNEWSKILLID

or
cBarbarian - ProfSkill - skNEWSKILLID
 
Thanks for the response, but it doesn't seem to work.

I tried creating a new *Extend Thing in my .user file.
When I click Find Thing, I can see "cBarbarian" and "skSC_Wrestle" in the list (to verify they both exist), but when I compile the entry it reports an error:

Thing Extension 'cBarbarian' - Tag 'skSC_Wrestle' not defined

I entered:
"cBarbarian" in the Thing Unique id
"AllowSkl1" in Group id
"skSC_Wrestle" in Tag id

Any thoughts?
 
Back
Top