プレイ日記
Clepto Clepto2.0
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!
8そうだね
プレイ済み
返信[1]
親投稿
Clepto Clepto2.0
This is the shop where you can hire mercenaries. You can buy potions and completely heal everybody in your party too
1そうだね
プレイ済み
返信[2]
親投稿
HoRiz0n ClashStudios125
Wow...this looks great!
0そうだね
未プレイ
返信[3]
親投稿
☆CodeZeяo☆ Code-Zero-666
It looks great man!
0そうだね
プレイ済み
返信[4]
親投稿
debugþ TheRealJoeCool
Clepto, can you put up the coding for the touch screen menu?
0そうだね
プレイ済み
返信[5]
親投稿
Chickens32 Chickens32
AWESOME!!!
0そうだね
未プレイ
返信[6]
親投稿
Clepto Clepto2.0
Which part Joe Cool ™?
0そうだね
プレイ済み
返信[7]
親投稿
debugþ TheRealJoeCool
Well, maybe when you tap a certain part of the screen, it would go to a menu. Oh! Can you show me also how to make a menu?
0そうだね
プレイ済み
返信[8]
親投稿
Clepto Clepto2.0
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?
0そうだね
プレイ済み
返信[9]
親投稿
debugþ TheRealJoeCool
Can you move a sprite( Animated) by dragging the stylus across the screen?
0そうだね
プレイ済み
返信[10]
親投稿
Clepto Clepto2.0
TOUCH OUT TM,TX,TY SPOFS 0,TX,TY TM=amount of time the touchscreen is pressed TX=X coordinates of stylus TY=Y coordinates of stylus
0そうだね
プレイ済み
返信[11]
親投稿
HoRiz0n ClashStudios125
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
0そうだね
プレイ済み
返信[12]
親投稿
Clepto Clepto2.0
That's how I felt for a while when I got Petit Computer. Let me know what you want help with and I'll be happy to help
1そうだね
プレイ済み
返信[13]
親投稿
HoRiz0n ClashStudios125
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)
0そうだね
プレイ済み
返信[14]
親投稿
Clepto Clepto2.0
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
0そうだね
プレイ済み
返信[15]
親投稿
Chickens32 Chickens32
Should I get this?
0そうだね
未プレイ
返信[16]
親投稿
debugþ TheRealJoeCool
Clepto, is it possible to animate the sprite as you drag it across the touch screen?
0そうだね
プレイ済み
返信[17]
親投稿
Clepto Clepto2.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
1そうだね
プレイ済み
返信[18]
親投稿
Clepto Clepto2.0
That is from memory so it might need tweaking. For example, after SPCOL 6,2,2,12,12 put ANIMCHK=0
1そうだね
プレイ済み