Working on the touch screen! Also, you can see other party members. They can be hired to join your party, but don't have special abilities like the main classes. That doesn't mean they aren't important though!
Well, there's a few ways to make touch screen buttons. Two ways I can think of off the top of my head would be sprite collision and binary variables (it's easier than it sounds). And menus are pretty simple when you know the trick. What kind of touch screen controls would you like to learn?
You seem good at this! WHAT DO I DO!!! :(
I just bought this and I am looking up everything across the internet to help (tutorials, explanations, etc) and everything starts from out of nowhere with useless words that they say with no context or help...stupid wasted $10
How do you make numbers like 1 and 10 not connect with a - symbol and turn pink (making the number negative)
I just want to make something like this Y=Y-1 without it making it a negative 1 (Y minus 1 is what i want)
Y=Y-1 is just fine. What I think is happening is that whatever decides the colors sees the -1 part as a number, but when you run the program, the computer just takes 1 away from Y. But if you want to prevent Y from going below 0 then type this
Y=Y-1
IF Y<0 THEN Y=0
Yup, I would put something like this:
TOUCH OUT TM,TX,TY
DISPLAY 1
SPOFS 5,TX,TY
SPCOLOR 5,RGB(0,0,0,0)
SPCOL 5,0,0,8,8
SPCOL 6,2,2,12,12
IF TM>0 THEN ANIMCHK=SPHITSP(5,6)
IF ANIMCHK>0 THEN ANIM=ANIM+1
IF ANIM>ANIMMAX THEN ANIM=0:FRAME=FRAME+1
IF FRAME>FRAMEMAX THEN FRAME=0
SPCHR 6,FRAME