• 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

Adding Proficiency to a Skill in a Magic Item

I would like to add a Skill Proficiency to a Wondrous Magic item.
I have tried various things, but haven't found how to do it in script yet.

I did see some races (or subrace, not sure where) that added the skills in the Tags area but of course this is a magic item.
[NOTE: would adding skill proficiency to a template work like that? or how would I add skill proficiency to a template?]

I also saw where they added an armor proficiency to a Tag, and then in code (script) had the line:

~ Give proficiency with heavy armor
perform hero.pushtags[ArmProfGrp.?]

Is there a way to do it by pushing the tags I set in my magic item, i.e.:

~ Give proficiency with skill proficiency
perform hero.pushtags[SkillProfGrp.?]

or some such thing? (SkillProfGrp does not exist that I know of)
 
From the github repository:

Code:
To grant proficiency to an armor group:

perform hero.assign[ArmProfGrp.ArmorLight]
perform hero.assign[ArmProfGrp.Shields]

To grant proficiency is a saving throw:

perform hero.pushtags[ProfSave.?]

To grant proficiency is a weapon:

perform hero.pushtags[WepProf.?]

To grant proficiency with a skill:

perform hero.assign[ProfSkill.skSleight]

To grant proficiency with a Tool:

Add tag > 
Group Id:ProfTool 
Tag Id: 
Name: Tool Proper Name 
Abbrev: Tool Proper Name
 
Back
Top