View Single Post
ploturo
Member
 
Join Date: May 2021
Posts: 84

Old June 19th, 2022, 06:59 PM
What is this part of the script supposed to be doing?

Code:
          advcur = field[advOrder].value
          for i = 1 to advcur
            if (field[advCost].value = 4) then
              advcount += 1 
              endif
            next
It is checking the same field on the same pick over and over again, so advCount will either be 0 (if field[advCost] isn't 4) or advcur (if field[advCost] is 4)?
ploturo is offline   #4 Reply With Quote