• 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

Creating Power Point pool in SWADE

Gumbytie

Well-known member
Beasts & Barbarians has an edge "Temptress". Gives the character boost/lower trait Power with its own power point pool. In Deluxe SW it is Charisma + 1/Rank Power Points. And my edge code worked and is this:

Code:
#trkmax[trkPower] += ((herofield[acRank].value + 1) + #traitbonus[trCharisma])

var PPoint as number
PPoint = ((herofield[acRank].value + 1) + #traitbonus[trCharisma])

field[livename].text = field[thingname].text & " (PP: " & PPoint & ")"

We have no Charisma in SWADE so the edge is modified to, Persuasion + 1/Rank Power Points. So tried this code but no avail:

Code:
#trkmax[trkPower] += ((herofield[acRank].value + 1) + #traitprof[skPersuadeSWADE])

var PPoint as number
PPoint = ((herofield[acRank].value + 1) + #traitprof[skPersuadeSWADE])

field[livename].text = field[thingname].text & " (PP: " & PPoint & ")"

So I need to pull the dice amount for the Persuasion skill and obviously doing it wrong :) Any suggestions?
 
Try (#traitfound[skPersuadeSWADE] * 2) instead of the #traitprof. That should give you the final die value (4, 6, 8, etc.) in points.
 
Back
Top