• 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

Composition Points

Just wondering if there is something like this hidden somewhere in the army builder, or if not. Is it possible to add?

When playing we follow composition rules for how to setup you army.

Like here for skaven, I would get following pointloss for taking clanrats:
20-22 -2
23-26 -3
27-31 -6
32-36 -8
37+ -9

And here for Skaven Slaves:
20-22 -4
23-26 -5
27-31 -6
32-36 -8
37-41 -12
42+ -15
Each Slave after 45 -1
2nd Slave unit with more than 36 models -5
Each Slave unit after the 2nd -5

So, for an army of 2400 points you have a total of 300 points to spend.

Of course, the value of units change all the time so you gotta edit em by yourself most of the time, but would still be helpful if one could find a way to add this so you see when putting your army together and the points change.

Possible, or did I miss it?:)
 
Hello,

I don't clearly understand what you want but I figure it comes with a point reduction linked to a unitsize.

On the prelink script, you can perform this kind of behavior.
Prelink said:
var modl as number
modl = count[model]

if (modl>19) then
if (modl<23) then
@single = -4
else
if (modl<27) then
@single = -5
else
...
endif
endif
endif

To know how many unit with more than 36 models, use a global tag added by option (global.SKslaves for example and the option live script: val:runtime.count?>35)
The easyest way to do the cost reduction is to divide it between all the units via the same option :

Cost Script said:
var val as number
val = unit.tagcount[global.SKslaves]
if (val>1) then
@single = 0- ( (val-1)*5/val )
endif

Hope that helps,

Garfunkel

Skaven Slaves:
20-22 -4
23-26 -5
27-31 -6
32-36 -8
37-41 -12
42+ -15
Each Slave after 45 -1
2nd Slave unit with more than 36 models -5
Each Slave unit after the 2nd -5

So, for an army of 2400 points you have a total of 300 points to spend.

Of course, the value of units change all the time so you gotta edit em by yourself most of the time, but would still be helpful if one could find a way to add this so you see when putting your army together and the points change.

Possible, or did I miss it?:)
 
Back
Top