I have a problem with linking weapons to proficiencies and attributes.
I have made a proficiency component based on skills from Savage World tutorial (I've made also skills, so I have both) but when I try to calculate roll value I got errors.
Right now I use such line:
En the erro is:
In the end I will always need only Dexterity so basically I wouldn't need ane other attribute so maybe it is some simplier way to overcome this.
I have also error when I have such line:
Error:
So I changed it for this:
But I guess it doesn't work.
Finally I would like to link a weapon to specific proficiency - but right now I doubt I could mange to do that.
Thanks in advance.
I have made a proficiency component based on skills from Savage World tutorial (I've made also skills, so I have both) but when I try to calculate roll value I got errors.
Right now I use such line:
Code:
@value = field[trtFinal].value + linkage[attribute].field[trtFinal].value
Code:
Linkage pick 'attribute' not located for current context
Location: 'field calculate' script for Field 'prRoll' near line 5
In the end I will always need only Dexterity so basically I wouldn't need ane other attribute so maybe it is some simplier way to overcome this.
I have also error when I have such line:
Code:
<linkage linkage="attribute" optional="yes"/>
Code:
File: traits.str (line 351) - Linkage - Duplicate record encountered ('attribute')
So I changed it for this:
Code:
<linkage linkage="Profic" optional="yes"/>
Finally I would like to link a weapon to specific proficiency - but right now I doubt I could mange to do that.
Thanks in advance.