トピック
受付中
κιъъιε kibbledude

I need help on certain commands #1

Im going to start making discussions about certain stuff i need help on starting with: REPEAT/UNTIL Arrays Sprite Animations/SPANIM please if you can take 3 minutes out of your day to help me; im struggling with everything. Thanks!
3そうだね
プレイ済み
返信[1]
親投稿
Piglover ripjim
I know that im cute oh, times up
0そうだね
未プレイ
返信[2]
親投稿
κιъъιε kibbledude
cool?
2そうだね
プレイ済み
返信[3]
親投稿
☆CodeZeяo☆ Code-Zero-666
Yo m8 go on my earlier post and ask me. if I don't know i'll point you in the right direction.
2そうだね
プレイ済み
返信[4]
親投稿
V360 TheV360
On SBS, I made a guide for SPANIM. ===== REPEAT UNTIL's syntax is like this: REPEAT VSYNC UNTIL BUTTON(2)==2 ===== Finally, arrays are like a bunch of variables defined at once. VAR ARR$[2] ARR$[0]="Hello " ARR$[1]="world!" PRINT ARR$[0]+ARR$[1]
1そうだね
プレイ済み
返信[5]
親投稿
V360 TheV360
(whoops, should be BUTTON(2)==#A, not BUTTON(2)==2)
1そうだね
プレイ済み
返信[6]
親投稿
κιъъιε kibbledude
ok, but what does VAR do?
1そうだね
プレイ済み
返信[7]
親投稿
V360 TheV360
Same as DIM, it makes arrays, or, if you are in STRICT mode, defines variables. VAR can also be used as a function to get a variable's value from its name.
1そうだね
プレイ済み
返信[8]
親投稿
κιъъιε kibbledude
whats DIM? im a serious noob
1そうだね
プレイ済み
返信[9]
親投稿
V360 TheV360
I explained DIM in the previous comment.
1そうだね
プレイ済み
返信[10]
親投稿
κιъъιε kibbledude
ok
1そうだね
プレイ済み
返信[11]
親投稿
Aaron Krondelo
DIM means DIMENSION. Arrays can be multidimensional.
1そうだね
プレイ済み
返信[12]
親投稿
PChicken NerdChicken
kibble, see on sbs forum (FAQ section) to see an in-depth tutorial on SPANIM.
2そうだね
プレイ済み
返信[13]
親投稿
ЩMr.Mo14 mr.mo14
dim test[2] 'create the array test[0]=3 test[1]=5 ?test[0]+test[1] dim test[2,2] 'define a 2 dimensional array (like a square) test[0,1] <- use it like this up two 4 dimensional arrays are allowed
1そうだね
プレイ済み
返信[14]
親投稿
Tiff0723 Tiff0723
投稿元ユーザーにより削除されました。