• 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 do I do this?

dartnet

Well-known member
So I am working on a Darwin's World data file for an upcoming game. In Darwin's World Mutants get more disadvantages then most characters. How would I script it so that a character would be allowed to take 3 minor hindrances and 2 major hindrances?
 
I'd put it on the Mechanic tab. At Initialization/1000 just add a line for:
Code:
perform hero.assign[Hero.HindMajor]
perform hero.assign[Hero.HindMajor]

That should add 2 more Major Hindrances to be allowed over the standard 1 Major, 2 Minor, I think.
 
Wow your scripting fu is strong.

So I take it adding a Minor Hindrances would be?

perform hero.assign[Hero.HindMinor]
 
Oh, I misread your original. You just need one extra Major and one extra Minor, not two extra Majors (I didn't realize you listed Minor first... I must be getting dyslexic in my old age! ;)) I think that might be right, but the easiest answer to it is to try it and see! That's probably right, though.
 
Back
Top