• 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

Error on dwarf army list options

Charybdes

New member
Hello,

I think I've found 2 errors on Dwarf army list options :

1) When selecting one longbeards unit + one longbeards/rangers unit, an error is displayed about the limitation of longbeards units - no matter the number of dwarf warriors units/Royal Blood general selected in the roster.

2) When selecting longbeards/rangers, the throwing axe is signalled as illegal, while the codex specifies otherwise "Warriors or Longbeards promotted as Rangers may be granted throwing axes for +1/model" (translated from French - sorry if this is not the exact wording in the English codex).

Thanks for your help. :)
 
Well,

I've done my homework and tried to fix these problems (with ABCreator, on the dwarf data file).

1) For the rule "dwMaxLong", I've changed the "allowance" setting to this :
allowance = allowed + overall.tagis[DwarfStuff.Bugman]

and the control of this in this way :

var totallb as number
totallb=overall.tagcount[DwarfStuff.LongRanger] + overall.tagcount[DwarfStuff.Longbeard]
if (allowance >= totallb) then
...

In this way, there is a real +1 allowance if Bugman is selected (otherwise, there is an error if you select a 1+ Lonbgeard unit(s) and a LongRanger unit without Bugman, you'll have error no matter the number of warriors ...)

2) On the dwRangers option, ThrowAxe link, LongRanger must be added to the live :
DwarfStuff.Warriors | DwarfStuff.Longbeard | DwarfStuff.LongRanger

I hope it could help other Dwarves players ... and that I have not messed up the whole data file ;)
 
Back
Top