Thank you for your speedy reply.
If that looked good then I have another related issue concerning this same situation.
How could I get the value out and compare to another value.
Here's what I've got, but it doesn't work.
Or If I wanted to send> the value of Place_%CPCCard%%CPCColumn%%CPCRow% instead of comparing them.
It gives me an 'Unknown Identifier Place_111' Error
I tried %Place_%CPCCard%%CPCColumn%%CPCRow%% no good.
All the Place_*** variables have been initialized and given values in a previous subroutine. The watch list confirms this.
Code: Select all
Let>CPCCard=0
Let>CPCRow=0
Let>CPCColumn=0
Let>CallerBall=100
Repeat>CallerBall
Let>CallerBall=CallerBall+1
Repeat>CPCCard
Let>CPCCard=CPCCard+1
Repeat>CPCColumn
Let>CPCColumn=CPCColumn+1
Repeat>CPCRow
Let>CPCRow=CPCRow+1
If>Place_%CPCCard%%CPCColumn%%CPCRow%=%CallerBall%
Gosub>CheckForDaub
endif
Until>CPCRow,5
Until>CPCColumn,5
Until>CPCCard,3
Until>Callerball,175
I'm trying to minimize how much of my code is made public. If you'd like me to send the complete code, I'd prefer to do it privately.