Archiverse Internet Archive
投稿のみ 投稿と返信
前のページ(最近)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
次のページ(過去)
返信[4]
親投稿
Alex MrCashews
I think @handle started with Twitter as a way to reference people directly. If it didn't start there it's certainly where it's most commonly coming from these days.
2そうだね
プレイ済み
返信[3]
親投稿
Alex MrCashews
yes take your SD card and boil until pliable roll in seasoning toss on the grill enjoy
8そうだね
プレイ済み
返信[1]
親投稿
Alex MrCashews
INC
1そうだね
プレイ済み
返信[11]
親投稿
Alex MrCashews
why are you using a GRP? something like a DAT would be way better suited, especially since GRPs only work in 16-bit color
2そうだね
プレイ済み
返信[9]
親投稿
Alex MrCashews
Should add a save file so I don't have to play all the way through every time. Otherwise, nice work!
1そうだね
プレイ済み
返信[1]
親投稿
Alex MrCashews
woomy
1そうだね
プレイ済み
返信[2]
親投稿
Alex MrCashews
You probably shouldn't be so public about it considering what happened last time.
0そうだね
プレイ済み
返信[6]
親投稿
Alex MrCashews
AND has higher precedence than &&. In fact, && and || have the lowest precedence on the operator table, probably on account of their shortcutting. The parents around the AND shouldn't be necessary, unless I'm missing something.
1そうだね
プレイ済み
返信[3]
親投稿
Alex MrCashews
Yeah scaling in SB is quite not good
1そうだね
プレイ済み
返信[1]
親投稿
Alex MrCashews
smilebasic creepypasta
1そうだね
プレイ済み
返信[5]
親投稿
Alex MrCashews
Miiverse: asking the hard-hitting questions.
0そうだね
プレイ済み
返信[33]
親投稿
Alex MrCashews
You forgot to save it didn't you? That sucks. Here's a protip: hit SHIFT/F2 with a slot editor open to pull up a save dialog. Never use DIRECT to save again! F1 becomes LOAD as well. Simply having more than one slot is a godsend as well in editing. Also as a person on the internet I'm required to acknowledge my recognition of that reference. ;-)
0そうだね
プレイ済み
返信[2]
親投稿
Alex MrCashews
I too am curious
0そうだね
プレイ済み
返信[24]
親投稿
Alex MrCashews
Look into DEF. Here's examples: DEF TEST NAME$ PRINT "HELLO, "+NAME$ END TEST "Jimmy" DEF SQUARED(NUM#) RETURN NUM#*NUM# END PRINT SQUARED(2) Something weird to mention: DEFs are completely untyped, they don't even type check their arguments! You can also make DEFs that don't take arguments, so they make gosub and goto completely obsolete.
1そうだね
プレイ済み
返信[1]
親投稿
Alex MrCashews
Bug. Will be fixed in coming 3.3.1 update
2そうだね
プレイ済み
返信[9]
親投稿
Alex MrCashews
Numbers are, by default, treated as real-type. There is an integer division operator DIV which treats its terms and result as integers. ex. 10 DIV 3 is 2. SB also has implicit conversion from int to real and vice-versa so there's no headaches about that. 10.8 DIV 3 is 10 DIV 3 in its eyes.
1そうだね
プレイ済み
返信[8]
親投稿
Alex MrCashews
An addendum to the number types: variable typing is determined when you declare them with VAR. You use a suffix character at the end of the name. VAR A$ would be a string, VAR A% would be int and VAR A# is double. No suffix defaults to double, unless you set OPTION DEFINT in which case it defaults to int (I recommend just always using suffixes)
1そうだね
プレイ済み
返信[2]
親投稿
Alex MrCashews
I'd call that the VAR command instead of the VAR function. There is a VAR() form but it does something entirely different.
0そうだね
プレイ済み
返信[4]
親投稿
Alex MrCashews
@sam you can't do that anymore
0そうだね
プレイ済み
返信[107]
親投稿
Alex MrCashews
Will you be creating new feature/bug threads on the English community? It would be nice to have. Thank you. Anyway, using COMMON on VAR or DIM to allow all slots to access them would be great. Labels would be cool too. That way we won't need to use VAR() or a special string format to access these things out of slot. Eg. COMMON VAR A%, COMMON DIM B#[2], COMMON @C
0そうだね
未プレイ