• 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

Picking n Edges For Free

Darq

Well-known member
So I have a race that gets to pick 3 of a large list of racial edges for that race. My thoughts are to assign a tag to all those racial edges. Is it possible to then count how many of those type the character has and if they select one when they have less than the total they are allowed, the edge cost can be refunded (So they get those three for free)?
 
You should be able to just fine. You know those "foreach" loops in some of the code examples stickied on this forum? You'd use something like that to do all the refunding but just create a variable for your counter and add to it as you loop through.

You may need to do a check before going into the loop, though, for the tag that says the character is still in Creation Mode. That way it doesn't bother doing that kind of check once you've gone to Advancement Mode.
 
Thanks. :) Lots of folks on the forums have really helped me put all of that together. If you have any other samples you think would be good to put in there just let me know.
 
Ok I think my approach will be to 1) give the Tzin't character 3 free edges. Different edges have different costs so the plan is to then to 2) charge extra edges for those choices.

Question is the edge / hindrance balance calculated after a change (removing an edge during character creation) or is it a total that is tracked?
 
Ok I think my approach will be to 1) give the Tzin't character 3 free edges. Different edges have different costs so the plan is to then to 2) charge extra edges for those choices.

Looks like Somebody is working on a Low Life file.. I was thinking about messing with that.. Let me know if I can be of any help.
 
Another way which may not help you but might be helpful to someone else is to use the Group category for sub-races. In my own house rules I have used the Group for this, calling it a Sub-Race in the Settings entry for that user setting.

Then I have the sub-race require that particular race, and have anything that it gives bootstrapped to it.

This method works for settings that have multiple options within a particular race. For Humans I made it so that they can choose an attribute. a couple of skill points, or a free Edge.
 
Looks like Somebody is working on a Low Life file.. I was thinking about messing with that.. Let me know if I can be of any help.

I have just about all of the bulk data entry done. I am circling in to start working on the actual "coding magic" now to make the special circumstances work. I have a copy of new Low Life: Re-Dredged that Andy sent me, so I am creating one for the yet to be released Low Life.

If you have any suggestions, let me know :D. The first thing I am tackling is Tzin'ts who have their own system of edges and hindrances - available only during character creation.

edges and hindrances have values of 1,2,3 and -1,-2,-3 respectively. The user may select 3 points of edges for "free" and as many additional as they balance with hindrances.
 
Another way which may not help you but might be helpful to someone else is to use the Group category for sub-races. In my own house rules I have used the Group for this, calling it a Sub-Race in the Settings entry for that user setting.

Then I have the sub-race require that particular race, and have anything that it gives bootstrapped to it.

This method works for settings that have multiple options within a particular race. For Humans I made it so that they can choose an attribute. a couple of skill points, or a free Edge.

I think i have the association to the race Tzin't managed - in two ways. First I have a Pick req of the race, also I have a User tag associated with each edge / hindrance Tzint1, Tzint2, Tzint3, TzintN1, TzintN2 and TzintN3.

Now I need to figure out if the total is calculated each time there is a change, in which case I think I would create a script executed at that time to add or subtract to the system counted edges / hindrances.

If the total is a running total, then I can add a script to the individual edges / hindrances and directly modify the total.
 
Back
Top