• 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

How to increase ability die cap

tatteredking

Well-known member
I'm looking for a way to increase the cap on abilities. I've got two Edges which increase strength and allow strength to go up to d12+2 and d12+5 respectively. Right now, I can't get above a d12 for some reason.
 
pre-traits/5000
the example shows vigor to D12+4
Code:
hero.child[attrVig].field[trtMaximum].value = 10
this is the correct code to increase the cap, but it will not work until the update that caped crusader is working on, right now it will still say D12 no matter how many times you increase the attribute.
 
Excellent, Thanks Praetor.

And thanks to Caped Crusader for all his work! I'm sure I'llhavve to go back and correct my user files after his update comes through :)
 
i was thinking there is a way around this limit that can be done until Caped Crusader sends out the update but it is rather involved and would require several steps. basically you would search to see if the user had the specific edge to allow the increase to D12+2 or D12+5 in an edge that ups the attribute. something like this. though this is not the correct code you know enough to correct it

if herotagis edge name then
if ability= d12 and ability less than d12+5 then
increase die roll +whatever
endif
endif
you'd have to do this code several times to cover every possible result
 
pre-traits/5000
the example shows vigor to D12+4
Code:
hero.child[attrVig].field[trtMaximum].value = 10
this is the correct code to increase the cap, but it will not work until the update that caped crusader is working on, right now it will still say D12 no matter how many times you increase the attribute.

This works like a charm.

Thanks!
 
Back
Top