Archiverse Internet Archive
投稿のみ 投稿と返信
前のページ(最近)
1 2 3 4 5 6 7 8 9 10 11 12 13 1446
次のページ(過去)
返信[13]
親投稿
PChicken NerdChicken
don't organize your development.
1そうだね
プレイ済み
返信[12]
親投稿
PChicken NerdChicken
Make a quick mock-up design of your framework for your game or project, then see what is wrong with it. Next, start over completely and make a second version incorporating what you wanted in the first version, then you can start working on graphics and game ideas fulltime. In my experience, this actually works if you stick to it, compared to just the freestyle mess that usually happens when you
1そうだね
プレイ済み
返信[7]
親投稿
PChicken NerdChicken
VSYNC slows down your program, if it's not there it will just run at the fastest speed available and have inconsistencies between platforms.
0そうだね
プレイ済み
返信[3]
親投稿
PChicken NerdChicken
JKX3VX4M - Petit Alchemy a game about creating new things by dragging them onto each other press the up button to open the element selector.
0そうだね
プレイ済み
返信[12]
親投稿
PChicken NerdChicken
yeah, that's actually a glitch on smiletool's part.
0そうだね
プレイ済み
返信[1]
親投稿
PChicken NerdChicken
you probably didn't format the number right. otherwise, i think you're either changing the example wrong, or looking at the wrong example. formatting help: -DAT Put it in an array and save with SAVE "DAT:NUM",ARR -TXT Convert it to a string with STR$() and save with SAVE "TXT:NUM",STR
0そうだね
プレイ済み
返信[20]
親投稿
PChicken NerdChicken
do you know what the IF statement is and does? do you know what loops are and how to use them? do you understand variables and their types? please tell me which ones you know.
1そうだね
プレイ済み
返信[9]
親投稿
PChicken NerdChicken
oh, and put this at the start of the code too: FOR I=0 TO X:STARS[I,0]=RND(400):STARS[I,1]=RND(240):NEXT back to in the gameloop: FOR I=0 TO X IF STARS[I,0] =< 0 THEN STARS[I,0] = 400 : STARS[I,1] = RND(240) GPSET STARS[I,0],STARS[I,1] DEC STARS[I,0],SPEED NEXT VSYNC 'look, ma! i'm stand-alone now! WEND
2そうだね
プレイ済み
返信[8]
親投稿
PChicken NerdChicken
you're going to want to make dots, keep their position stored, and then change it every frame. so, in smilebasic terms this means we'll need an array to save, a FOR loop to change the positions of the dots, and GPSET inside of that loop to draw. X=100 DIM STARS[X,2] 'the 2 means to save two values per item (x, y) WHILE TRUE 'this is your gameloop or wherever the star movement is
2そうだね
プレイ済み
返信[4]
親投稿
PChicken NerdChicken
7 the right of the roof needs to get fixed, then it would be a 9.
0そうだね
プレイ済み
返信[12]
親投稿
PChicken NerdChicken
kibble, see on sbs forum (FAQ section) to see an in-depth tutorial on SPANIM.
2そうだね
プレイ済み
返信[21]
親投稿
PChicken NerdChicken
You CANNOT CONTROL ANY OUTPUT FROM THE IR PORT. The only thing you can use the IR port for is the Circle Pad Pro, and that is limited to the O3DS line, and it ONLY RECEIVES INPUT. The IR port isn't powerful enough to function as a TV remote, even if you had homebrew.
0そうだね
プレイ済み
返信[5]
親投稿
PChicken NerdChicken
you didn't have any ideas..?
0そうだね
プレイ済み
返信[5]
親投稿
PChicken NerdChicken
There's one line of DATA with literally all the recipes in this format: 1st element to add, 2nd element to add, 1st element created, 2nd element created if applicable (otherwise -1), repeat. Elements are identified as a number. You can find these numbers by looking at the other line of DATA, which has all the names of the elements in order. Ex. DATA 0,0,4,-1,0,1,5,-1,0,2,6,-1 DATA -2 'to show end
0そうだね
プレイ済み
返信[4]
親投稿
PChicken NerdChicken
1. There are no 'cheats' in SmileBASIC. 2. DIM ARRAY[X,Y] LOAD "DAT:MAP",ARRAY,0 BGLOAD 0,ARRAY
0そうだね
プレイ済み
返信[3]
親投稿
PChicken NerdChicken
element selector (dpad-down)
0そうだね
プレイ済み
返信[2]
親投稿
PChicken NerdChicken
new options screen
0そうだね
プレイ済み
返信[1]
親投稿
PChicken NerdChicken
bottom
0そうだね
プレイ済み
プレイ日記
PChicken NerdChicken
Petit Alchemy V1.06 is out! Over 100 elements to create! Key is JKX3VX4M. Drag elements onto each other to combine them! Screenshots will be posted below.
3そうだね
プレイ済み
返信[10]
親投稿
PChicken NerdChicken
Scratch has a setup where sprites have their own set of scripts each, and scripts can 'run at the same time'. Sprites are defined before the program starts, and they have multiple 'costumes', or graphical looks. The graphical side of things is very limited, and the closest thing to a console is the visible list function they have. It's at scratch.mit.edu. I started there before moving onto Lua.
0そうだね
プレイ済み