jkthomsen9
Well-known member
I am converting Chief Weasle's Scout data set to Pathfinder.  I am having trouble with the scrimage ability.  I changed the SPECIAL to an ABILITY.  I am getting an error that the field xSource was referanced but not defined.  For fields I added xSource with a value of Class.  The eval script is as follows. 
It is timed as post-levels (user) 20000.
	
	
	
		
Thank you for any help.
James
				
			It is timed as post-levels (user) 20000.
		Code:
	
	 call CalcValue
var result as number
~ If we fail the test for being speedy, get out
   if (hero.tagis[Encumbered.Medium] + hero.tagis[Encumbered.Heavy] <> 0) then
     result = assign[Helper.SpcDisable]
     done
   elseif (hero.tagis[Hero.MedArmor] + hero.tagis[Hero.HeavyArmor] <> 0) then
     result = assign[Helper.SpcDisable]
     done
   endif
      ~ Set our name properly
      field[livename].text = field[name].text & " +" & field[Value].value & "d6"
	Thank you for any help.
James