• 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

Feat to Make Exotic Weapons Martial

tatteredking

Well-known member
Did a search to see if this had been asked or answer3ed and was unsuccessful in finding an answer.

I am coding a couple feats, that when taken, will make a small group of exotic weapons, useable by a particular race, into martial weapons for the purposes of proficiency.

I'm aware that on the weapon page in the editor there is the "Easy if Race..." selection, but what I am looking to do is make these proficiencies easy only if the feat is taken. I'm unsure how to make that distinction.

Thoughts? Thanks in advance!
 
When you click the "Easy If Race" button on the weapon, the first item is "-New Tag-", right? Once you've created that new tag, and assigned it to all the weapons, do you know how to get that tag to the hero from the feat?
 
OK I came up with this. Now I gotta figure out timing...

perform hero.assign[wEasyRace.DrSkirmish]

Crap....not working in any timing...
 
Last edited:
Actually, I apologize, I was mis-remembering the details of how this works, and the path I was leading you on isn't actually going to work quite as I was thinking.

On your feat, at the top right of the editor, press the Tags button, and add a new tag. Enter "Race" as the group Id and "DrSkirmish" as the Tag Id.

Now, for the script on the feat - you need to tell the hero that it belongs to the DrSkirmish race, rather than wEasyRace.DrSkirmish.

phase: Pre-Levels, priority: 5000
Code:
perform hero.assign[Race.DrSkirmish]
 
Back
Top