• 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

Adding free D6 skill to a race

salcor

Well-known member
So I am still struggling through making my Savage Bestiary Data file and I am stuck. For the Dendrine race they receive a free d6 in Persuasion. So I looked at the Shaintar data files since a number of those races get a free D6 in a skill. So I bootstrapped the Persuasion skill and then added this eval.

linkage[Skill].field[trtBonus].value += 1
perform #resspent[resSkill,-,1,field[name].text]

When I try to test it, it only adds a d4 to the skill. I appreciate the help.

Salcor
 
Last edited:
Zarlor discusses this in the first post in the Common Code thread. His syntax is like this:

Code:
foreach pick in hero where "thingid.skPersuasion"
  eachpick.field[trtBonus].value += 1
nexteach
 
I think I see what my error id. That's for pointing out the common coding syntax.

Salcor
 
Last edited:
So, I have a similar question, but don't want to limit to specific skill and want the player to be prompted.

At the time when I asked about this several months ago, there didn't seem to be a way. I just ended up giving the race a couple extra skill points, since, in practice, it does the same thing except in one specific (extremely unusual) case.
 
At the time when I asked about this several months ago, there didn't seem to be a way. I just ended up giving the race a couple extra skill points, since, in practice, it does the same thing except in one specific (extremely unusual) case.
or
Well, that's what was was going to do at the beginning, but was hoping for a way to avoid that one edge case you mentioned.
 
Honestly, that case is so aberrational (someone who spends literally all their skill points on separate skills so they have nothing but D4's) I just didn't worry about it in the end, as I can't see that as going well for someone anyway.
 
Honestly, that case is so aberrational (someone who spends literally all their skill points on separate skills so they have nothing but D4's) I just didn't worry about it in the end, as I can't see that as going well for someone anyway.

Yea, I just added 2 skill points to my humans. I will say, I could see someone(Possibly me!) picking a few extra skills that MIGHT come up just to avoid the penalty)
 
Sure; in fact, its very much cost-effective to pick up the D4 in anything you think you'll want later at the start. But as long as you start with even a single D6, that extra 2 points still works right, as you could always use the free D6 skill for that one.
 
Back
Top