Archiverse Internet Archive
投稿のみ 投稿と返信
前のページ(最近)
15 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2546
次のページ(過去)
返信[3]
親投稿
PChicken NerdChicken
PMCNT is not a system variable. It just stands for Previous Main Count.
0そうだね
プレイ済み
返信[1]
親投稿
PChicken NerdChicken
IF MAINCNT-PMCNT > 59 THEN INC MIN IF MIN > 59 THEN MIN=0 INC HOUR ENDIF IF HOUR > 23 THEN HOUR=0 INC DAY ENDIF PMCNT=MAINCNT ENDIF
1そうだね
プレイ済み
返信[14]
親投稿
PChicken NerdChicken
The IFs are to check where it is. With four IFs, you can check if a point is in a box by using >= <= . This might be a little too complicated, so here's an example. IF X >= 0 THEN IF X <= 0 + 32 THEN IF Y >= 208 THEN IF Y <= 208 + 32 THEN Yep! The point is inside a box in the lower-left corner! RETURN TRUE endifs... lol RETURN FALSE END
0そうだね
プレイ済み
返信[11]
親投稿
PChicken NerdChicken
oops... DEF CHECKTOUCH parameters you need to make it reusable TOUCH OUT TX,TY,TM a bunch of IFs that take into account the parameters RETURN result END
0そうだね
プレイ済み
返信[10]
親投稿
PChicken NerdChicken
Picy: You should be able to use TOUCH by now. You just need to check if the screen was touched in a certain area using a bunch of IFs. I recommend making a function so that you don't need to type in a bunch of code over and over again. DEF CHECKTOUCH TOUCH OUT TX,TY,TM a bunch of IFs END
0そうだね
プレイ済み
返信[5]
親投稿
PChicken NerdChicken
With some minor adjusting, it will look good.
1そうだね
プレイ済み
返信[4]
親投稿
PChicken NerdChicken
The lines are not the same on both sides.
1そうだね
プレイ済み
返信[6]
親投稿
PChicken NerdChicken
BACK UP YOUR SAVEDATA!
1そうだね
プレイ済み
返信[1]
親投稿
PChicken NerdChicken
yes. you should make a function so you don't have to type in all those IFs over and over.
1そうだね
プレイ済み
返信[2]
親投稿
PChicken NerdChicken
ROCCO: You should make a discussion about this instead of just commenting on someone else's post. In short, it's a dev tool for creating pretty limited games (compared to the actual capabilities of a 3DS) using a programming language called SmileBASIC, which is also the name of the app. It has been out for 2-3 years, IIRC.
1そうだね
プレイ済み
返信[5]
親投稿
PChicken NerdChicken
DON'T USE LABEL LOOPS! Use WHILE:WEND or REPEAT:UNTIL loops. Label loops are bad coding practices. They do not make as much sense as regular loops to the untrained eye, and do not make use of the label feature correctly. WHILE TRUE <- You can set a condition so that this loop will only run if and during when it is true. You can use CONTINUE and BREAK here, which can't be used in label loops. WEND
2そうだね
プレイ済み
返信[2]
親投稿
PChicken NerdChicken
>it won't work...
1そうだね
プレイ済み
返信[1]
親投稿
PChicken NerdChicken
It does not exist. What you saw was a screenshot, ported into SmileBASIC. I suggest you not be gullible to such things.
1そうだね
プレイ済み
返信[20]
親投稿
PChicken NerdChicken
you have the option for it set in your BGGET command
1そうだね
プレイ済み
返信[19]
親投稿
PChicken NerdChicken
you have the pixel one already
1そうだね
プレイ済み
返信[14]
親投稿
PChicken NerdChicken
also hb has 3D portal clone, which you will need as a file if you want to play it.
2そうだね
プレイ済み
返信[13]
親投稿
PChicken NerdChicken
hb hags does not need a special card lol that's the bad hags that costs money all you need for real hags is an sd card and files on it, and a launcher you can get the files and information on the various launchers by googling it.
2そうだね
プレイ済み
返信[3]
親投稿
PChicken NerdChicken
Put this in after your sprite initialization: SPLINK (hpbar), (enemy), -30, 0 also make sure you've SPHOMED the origins of the sprites to their centers.
0そうだね
プレイ済み
返信[2]
親投稿
PChicken NerdChicken
FOR I=0 TO 10 STEP 1 ?I NEXT
0そうだね
プレイ済み
返信[17]
親投稿
PChicken NerdChicken
i don't think you need bgcoord, as you're dealing with pixel units and not bg characters.
1そうだね
プレイ済み