Hi BillyBoyo,
Could you please take a look at this.
INPUT RECORD1:
...(72 chars)..BAXXXXXXXXXXXXXXXXXX61
INPUT RECORD2:
...(72 chars)..GPXXXXXXXXXXXXXXXXXX60
BA/GP is located at position 73. Then we have 18 char of spaces.
Now at position we have binary values of 60 and 61.
INREC IFTHEN=(WHEN=(73,2,CH,EQ,C'BA'),
OVERLAY=(73:C'BABY ACTS WEIRD'),HIT=NEXT),
IFTHEN=(WHEN=(73,2,CH,EQ,C'GP'),
OVERLAY=(73:C'GLOBAL PLAY ENDS'),HIT=NEXT),
IFTHEN=(WHEN=(93,2,BI,EQ,61),
OVERLAY=(93:C'A'),HIT=NEXT),
IFTHEN=(WHEN=(93,2,BI,NE,61),
OVERLAY=(93:C'M'))
In the output, i am getting M in the 93 position everytime, though the 93rd position in the input has 61. Could you please help me what I am missing here.