• 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

Racial Armour

MardukBathory

Well-known member
Trying to make the mountain dwarf sub-race but I can't find racial armour Like everything else, it'll probably turn up right under my nose, so if anybody else has spotted it... please show me where on this thread.

Does anybody know if there is some other way to add armour proficiencies to a sub-race if there isn't one similar to "Racial Weapons"?
 
In an eval script on your sub race. The eval scripts button is one of the blue ones in the upper right of the editor.
 
....I don't know what I did but when I tested this out and made a mountain dwarf found I'd somehow managed to give them armour, that appears in their armour list, that will not be removed. I mean, I don't have to tick it and make it active but it refuses to stay off my print preview :confused::confused::confused::confused:
 
....I don't know what I did but when I tested this out and made a mountain dwarf found I'd somehow managed to give them armour, that appears in their armour list, that will not be removed. I mean, I don't have to tick it and make it active but it refuses to stay off my print preview :confused::confused::confused::confused:
Without seeing your .user file I "assume" you bootstrapped the armor to the Race. Bootstrap would cause the armor to come along and show in "Green" text. It will work but you would be unable to remove it as its bootstrapped to the race.
 
That does sound odd. Did you bootstrap a piece of armor to the subrace perhaps? If so, delete that bootstrap and add an eval script instead which does this:

Code:
      ~if we've been disabled, get out now
      doneif (tagis[Helper.Disable] <> 0)

      ~assign our weapon proficiencies to the hero
      perform hero.pushtags[ArmProfGrp.Armor?]

Then go to the "Tags" button and add two tags to the subrace Thing. The Tag Group for each of them will be "ArmProfGrp" and the Tag ID for them will be "ArmorLight" for the first and "ArmorMed" for the second.
 
Back
Top