I think I get what you're looking for here! Do you mean you want to increase a variable until it reaches a certain number?
With this code:
[i[
if a# > 200
inc a#
endif
[/i]
You're saying 'If a# holds a value of
more than 200, increase the value of a# by 1'. You should be able to get the effect you want by changing the code to 'if a# < 200', because that way you're saying 'if a# hold a value of
less than 200, increase the value of a#'. That way, a# will increase until it reaches 200, then stop increasing
Hope that helps
The code never bothered me anyway...