Hello everyone, me again...
I have an ability that the user may select more than once. Each time it is added, it grants a +1 bonus. I only want the class tab to show the ability once, reflecting the bonus based on how many times the user has selected it. I thought that using the FirstCopy tag would help:
	
	
	
		
But that's not working; it still adds a new entry to the class tab each time it's picked, and the bonus isn't adding properly.
Is FirstCopy the right tag to be using here? If not, what would work?
				
			I have an ability that the user may select more than once. Each time it is added, it grants a +1 bonus. I only want the class tab to show the ability once, reflecting the bonus based on how many times the user has selected it. I thought that using the FirstCopy tag would help:
		Code:
	
	 If we're not shown, just get out now
      doneif (tagis[Helper.ShowSpec] = 0)
~ If we're disabled, just get out now
      doneif (tagis[Helper.SpcDisable] <> 0)
~ Only add the first copy
      doneif (tagis[Helper.FirstCopy] = 0)
~Add a +1 bonus to Will saving throws against fear and mind-affecting effects.
     field[abValue].value += field[xIndex].value     
     #situational[hero.childfound[svWill],signed(field[abValue].value) & " to saves against fear and mind-affecting effects.",field[thingname].text]
	Is FirstCopy the right tag to be using here? If not, what would work?