Hey Thanx TKFI5H. I was wondering could you work up a little exampl efor me, of you mean, and how i would use the LEFT£() command to delete the previous letter from the string. I would be thankful if you could.
Here is my code so far.
Rem Coords Variables
X = 0
Y = 59
Rem Varibles
points$ = points$
Rem Setup Config
hide mouse
set display mode 800,600,32
ink rgb(255,0,0),1
cls
Rem Start
load image "Start Screen.bmp",1
paste image 1,0,0
wait 5000
load image "Producer Screen.bmp",2
paste image 2,0,0
wait 5000
cls
Rem Load images To Memory ******
load image "Black Tile.bmp",29
load image "Space.bmp",30
` ******************************
load image "Letters\A.bmp",3
load image "Letters\B.bmp",4
load image "Letters\C.bmp",5
load image "Letters\D.bmp",6
load image "Letters\E.bmp",7
load image "Letters\F.bmp",8
load image "Letters\G.bmp",9
load image "Letters\H.bmp",10
load image "Letters\I.bmp",11
load image "Letters\J.bmp",12
load image "Letters\K.bmp",13
load image "Letters\L.bmp",14
load image "Letters\M.bmp",15
load image "Letters\N.bmp",16
load image "Letters\O.bmp",17
load image "Letters\P.bmp",18
load image "Letters\Q.bmp",19
load image "Letters\R.bmp",20
load image "Letters\S.bmp",21
load image "Letters\T.bmp",22
load image "Letters\U.bmp",23
load image "Letters\V.bmp",24
load image "Letters\W.bmp",25
load image "Letters\X.bmp",26
load image "Letters\Y.bmp",27
load image "Letters\Z.bmp",28
Rem Load The Screen For Main Game
load image "Main Screen.bmp",31
paste image 31,0,0
Rem Input For Name 1
do
if inkey$()="a"
paste image 3,X,Y
wait 60
inc x,40
endif
if inkey$()="b"
paste image 4,X,Y
wait 60
inc x,40
endif
if inkey$()="c"
paste image 5,X,Y
wait 60
inc x,40
endif
if inkey$()="d"
paste image 6,X,Y
wait 60
inc x,40
endif
if inkey$()="e"
paste image 7,X,Y
wait 60
inc x,40
points$ = points$ + "e"
endif
if inkey$()="f"
paste image 8,X,Y
wait 60
inc x,40
endif
if inkey$()="g"
paste image 9,X,Y
wait 60
inc x,40
endif
if inkey$()="h"
paste image 10,X,Y
wait 60
inc x,40
endif
if inkey$()="i"
paste image 11,X,Y
wait 60
inc x,40
endif
if inkey$()="j"
paste image 12,X,Y
wait 60
inc x,40
endif
if inkey$()="k"
paste image 13,X,Y
wait 60
inc x,40
endif
if inkey$()="l"
paste image 14,X,Y
wait 60
inc x,40
points$ = points$ + "l"
endif
if inkey$()="m"
paste image 15,X,Y
wait 60
inc x,40
endif
if inkey$()="n"
paste image 16,X,Y
wait 60
inc x,40
endif
if inkey$()="o"
paste image 17,X,Y
wait 60
inc x,40
points$ = points$ + "o"
endif
if inkey$()="p"
paste image 18,X,Y
wait 60
inc x,40
endif
if inkey$()="q"
paste image 19,X,Y
wait 60
inc x,40
endif
if inkey$()="r"
paste image 20,X,Y
wait 60
inc x,40
endif
if inkey$()="s"
paste image 21,X,Y
wait 60
inc x,40
endif
if inkey$()="t"
paste image 22,X,Y
wait 60
inc x,40
endif
if inkey$()="u"
paste image 23,X,Y
wait 60
inc x,40
points$ = points$ + "u"
endif
if inkey$()="v"
paste image 24,X,Y
wait 60
inc x,40
points$ = points$ + "v"
endif
if inkey$()="w"
paste image 25,X,Y
wait 60
inc x,40
endif
if inkey$()="x"
paste image 26,X,Y
wait 60
inc x,40
endif
if inkey$()="y"
paste image 27,X,Y
wait 60
inc x,40
points$ = points$ + "y"
endif
if inkey$()="z"
paste image 28,X,Y
wait 60
inc x,40
endif
if inkey$()=" "
paste image 30,X,Y
wait 60
inc x,40
endif
if scancode()=14
dec x,40
paste image 30,X,Y
wait 60
endif
if scancode()=28
goto Name2
endif
loop
Name2:
Rem Coords For Name 2
X = 0
Y = 500
Rem Input For Name 2
do
if inkey$()="a"
paste image 3,X,Y
wait 60
inc x,40
endif
if inkey$()="b"
paste image 4,X,Y
wait 60
inc x,40
endif
if inkey$()="c"
paste image 5,X,Y
wait 60
inc x,40
endif
if inkey$()="d"
paste image 6,X,Y
wait 60
inc x,40
endif
if inkey$()="e"
paste image 7,X,Y
wait 60
inc x,40
endif
if inkey$()="f"
paste image 8,X,Y
wait 60
inc x,40
endif
if inkey$()="g"
paste image 9,X,Y
wait 60
inc x,40
endif
if inkey$()="h"
paste image 10,X,Y
wait 60
inc x,40
endif
if inkey$()="i"
paste image 11,X,Y
wait 60
inc x,40
endif
if inkey$()="j"
paste image 12,X,Y
wait 60
inc x,40
endif
if inkey$()="k"
paste image 13,X,Y
wait 60
inc x,40
endif
if inkey$()="l"
paste image 14,X,Y
wait 60
inc x,40
endif
if inkey$()="m"
paste image 15,X,Y
wait 60
inc x,40
endif
if inkey$()="n"
paste image 16,X,Y
wait 60
inc x,40
endif
if inkey$()="o"
paste image 17,X,Y
wait 60
inc x,40
endif
if inkey$()="p"
paste image 18,X,Y
wait 60
inc x,40
endif
if inkey$()="q"
paste image 19,X,Y
wait 60
inc x,40
endif
if inkey$()="r"
paste image 20,X,Y
wait 60
inc x,40
endif
if inkey$()="s"
paste image 21,X,Y
wait 60
inc x,40
endif
if inkey$()="t"
paste image 22,X,Y
wait 60
inc x,40
endif
if inkey$()="u"
paste image 23,X,Y
wait 60
inc x,40
endif
if inkey$()="v"
paste image 24,X,Y
wait 60
inc x,40
endif
if inkey$()="w"
paste image 25,X,Y
wait 60
inc x,40
endif
if inkey$()="x"
paste image 26,X,Y
wait 60
inc x,40
endif
if inkey$()="y"
paste image 27,X,Y
wait 60
inc x,40
endif
if inkey$()="z"
paste image 28,X,Y
wait 60
inc x,40
endif
if inkey$()=" "
paste image 30,X,Y
wait 60
inc x,40
endif
if scancode()=14
dec x,40
paste image 30,X,Y
wait 60
endif
loop