プレイ日記
giovanni SoNsOn3
I don't know how to program so i did this. And can someone tell me how to program.
3そうだね
プレイ済み
返信[1]
親投稿
K-Ta LOTW12
Well I can't tell you how to program, but I can give you some simple commands you can use. There is also a help section in the editor, where you can write in commands and it will explain how to use them. Are there any commands you already know, so I'm not giving you obsolete information?
0そうだね
プレイ済み
返信[2]
親投稿
Phoenix B) epicphoenix4
Variables are your friends. If you don't know what they are, take a peek at SMILEBASIC's manual. It does a pretty good job of explaining it.
0そうだね
プレイ済み
返信[3]
親投稿
Lukas dogcutie
Before getting into games, I suggest starting in the text. What I did is look at the SmileBASIC manual then try to code basic things. I also look at examples and ask people from Miiverse what to do. I also sometimes type a few letters, choose a command, and look at the help menu to see what it does.
0そうだね
プレイ済み
返信[4]
親投稿
DasEtwas MyTheo00
maybe you can make a simple movement game with BUTTON() as input to move a little space ship letter using this code: @LOOP B=BUTTON() IF B==1 THEN Y=Y-1 IF B==2 THEN Y=Y+1 IF B==4 THEN X=X-1 IF B==8 THEN X=X+1 CLS LOCATE X, Y, 50 PRINT"O" WAIT 1 GOTO@LOOP modify the code and see what happens.. B, X and Y are variables. They have a number or word stored. Imagine a variable as a drawer with a
1そうだね
未プレイ
返信[5]
親投稿
DasEtwas MyTheo00
sign with the name of the variable on it. When you type something like X=1+2 then the computer will calculate the math and place the result in the drawer. X=X+1 means, if X is 5 for example, that you take X, see that it´s '5'. Now it will add '1' and get 6, now 6 gets put into the drawer again. I know this all can be complicated, but if you really think about it, you will get every problem solved!
1そうだね
未プレイ
返信[6]
親投稿
giovanni SoNsOn3
Can you all help me make a game. (Help me only in the comments)
1そうだね
プレイ済み
返信[7]
親投稿
DasEtwas MyTheo00
Watch youtube videos from PetitProfessor3D
0そうだね
未プレイ
返信[8]
親投稿
K-Ta LOTW12
I can help you for some things, feel free to ask any questions you have.
0そうだね
プレイ済み