I was unsure as to whether or not you could only shoot down the front number or any number in the line, so long as the number was equal to the target of course.
The problem I am having is actually getting the nubers to scroll across the LCD you see i have a 2 x 16 LCD running on port.B 4 buttons below it running on Port.A 0-3 the 627 and the required resistors etc (my dad built it specifically for this project)
The code I originally found for scrolling text across the screen was this
Code:
FOR B0 = 144 TO 128 STEP -1
LCDOUT $FE, 1 ' Clears Screen (not needed)
LCDOUT $FE,B0,"This Is A Test!!" 'OUTPUT TO LCD SLIDE
PAUSE 1000 'IN FROM RIGHT LINE 1
NEXT
The above code simply steps the string in 1 character at a time from the far right of line 1 until it reaches the far left.
Of course this is using a predefined string and isnt suitable for what I need to be doing, since I need to be bringing them in from the right while removing characters from it and maintaining the position of the existing numbers.
If how you describe the game being played is actually as it was (similar to the clone I linked)
then if the below example occured I would need to do the following
5: 4385559271 ---> 5: 438 9271 and continue adding onto the end and shifting the characters from right to left, at the same time I need to be checking to see if a number has reached the ship... I was thinking of possibly using LCDIN on the cell after the "5:" and checking to see if it had a number in it during the loop which adds another.
This would of course allow me to determine whether or not the player is out, since if a number is in that cell and another is being added then it would hit the : 
I just dont know how to get them to scroll and remove numbers in between without losing positioning like the example above, I am terrible when it comes to overcomplicating and thus need a little advice for an approach.
Bookmarks