Archiverse Internet Archive
投稿のみ 投稿と返信
前のページ(最近)
1 2 3
次のページ(過去)
返信[2]
親投稿
Nicole moesaku
It's a good idea to avoid GOTO. It's almost never necessary and tends to make programs confusing or lead to bugs. For instance, this works: IF B$=="+" THEN D=A+C IF B$=="-" THEN D=A-C etc. whereas this has a bug in it: IF B$=="+" THEN GOTO @PLUS IF B$=="-" THEN GOTO @MINUS @PLUS D=A+C @MINUS D=A-C Notice that after D=A+C is run, it ends up running D=A-C too.
3そうだね
未プレイ
返信[1]
親投稿
Nicole moesaku
Nice work! Here's some tips that might help you out: INPUT only reads a number as input. To get a string like "+", you should use LINPUT instead. However, just changing that won't work, because string variable names have to end in $. Therefore, that line should become: LINPUT "OPERATION (+-*/)";B$ and B should be changed to B$ elsewhere too.
4そうだね
未プレイ
返信[2]
親投稿
Nicole moesaku
These files can then be used with code like this: DIM MAP[0] FOR I=0 TO 3 LOAD "DAT:SC_NAME_L"+STR$(I),MAP,0 BGSCREEN I,64,64 BGLOAD I,MAP NEXT You'll notice a delay between each layer being loaded. This is because LOAD is somewhat slow. You can hide this delay by using VISIBLE to hide the BG while loading, or by LOADing all four layers into four arrays first before BGLOADing all of them.
0そうだね
未プレイ
返信[1]
親投稿
Nicole moesaku
It's a bit confusing, but it works like this: LOAD and SAVE in the Map tool save it in a format for editing in that tool, as a single MAP_NAME file. SCSAVE saves it in a format easier for using in programs, by saving it as four files from SC_NAME_L0 to SC_NAME_L3.
0そうだね
未プレイ
返信[3]
親投稿
Nicole moesaku
They mean the SmileBASIC command GPAINT, not the program GPaint. Also, open source doesn't necessarily mean lower quality than proprietary. Sure, stuff like LibreOffice is, but as a counter-example: web browsers like Firefox and Google Chrome (in the form of Chromium) are open-source, whereas Internet Explorer and Edge are proprietary.
3そうだね
未プレイ
返信[1]
親投稿
Nicole moesaku
La clé est-elle correcte? Cela ne fonctionne pas pour moi.
3そうだね
未プレイ
返信[11]
親投稿
Nicole moesaku
@Cheick No, this is a screenshot of Pokemon X/Y. It is used as a meme for things which took a long time. SmileBASIC took almost three years to be published in Europe. (Google Translate) Non, c'est une capture d'écran de Pokémon X / Y. Il est utilisé comme un mème pour des choses qui ont pris beaucoup de temps. SmileBASIC a pris près de trois ans pour être publié en Europe.
6そうだね
未プレイ
返信[3]
親投稿
Nicole moesaku
To explain, the reason this didn't work is because graphics pages actually don't support every color from RGB(0,0,0) to RGB(255,255,255). Instead, the colors are rounded down to the next lowest multiple of 8, so when you set a pixel to RGB(255,70,70), it actually ends up getting set to RGB(248,64,64). (More technically, GRPs are stored in a 16-bit RGBA5551 format instead of 32-bit RGBA8888.)
1そうだね
プレイ済み
プレイ日記
Nicole moesaku
Turtle library + anti-aliased line library v1.0.0 [N3A84EGS]
11そうだね
プレイ済み
返信[2]
親投稿
Nicole moesaku
This game is very well done! But about that maid power... it might be a biiiit overpowered. At 200 HP and 15 DEF I was basically untouchable, since I just healed back any damage that was dealt on me. This also meant I could just keep waiting forever and rack up as many skill points as I wanted.
1そうだね
プレイ済み
返信[3]
親投稿
Nicole moesaku
GFILL is a filled box, GPAINT works like the fill tool in stuff like MS Paint.
0そうだね
プレイ済み
返信[1]
親投稿
Nicole moesaku
Try `GCIRCLE X,Y,RADIUS,COLOR` and then `GPAINT X,Y,COLOR` to fill it.
1そうだね
プレイ済み
返信[7]
親投稿
Nicole moesaku
大学に日本語を勉強しますけど、まだ初心者です。でも、私は良くなっていますよ! (I study Japanese at college, though I'm still a beginner. But I'm getting better!)
2そうだね
未プレイ
返信[5]
親投稿
Nicole moesaku
nobuさんへ はい、欧米リリースは2015年春にあります。 (Yes, the Western release is in Spring 2015.) おかっぺさんへ はい、私たちは頑張ります! (Yep, we'll hang in there!)
2そうだね
未プレイ
返信[1]
親投稿
Nicole moesaku
It will, sometime in Spring 2015, with the title "SmileBASIC".
1そうだね
未プレイ