プレイ日記
BoogerFace BlueDog100
PLZ HELP!!!! PLEASE!!! ANYONE!!! please help me learn how to make anything, ANYTHING!!! Text based RPG'S Games (mostly) Apps, ANYTHING!!! HELP PLEEEEEASE:_(:_(:_(:_(
2そうだね
プレイ済み
返信[1]
親投稿
komodo † 406mario
check out pitit professer videos he will teach you the basics.
1そうだね
プレイ済み
返信[2]
親投稿
nate NJR1432
I'll help teach you if you like!
2そうだね
プレイ済み
返信[3]
親投稿
Reshiramax Reshiramax
Check out the instruction manual
2そうだね
プレイ済み
返信[4]
親投稿
BoogerFace BlueDog100
OH Thank goodness, please teach me,
1そうだね
プレイ済み
返信[5]
親投稿
nate NJR1432
okay I'll post little instructions here. PRINT "hello PRINT puts words or numbers on the screen.
3そうだね
プレイ済み
返信[6]
親投稿
nate NJR1432
INPUT "do you like bananas?";BANANA$ IF BANANA$=="no"THEN PRINT "okay then." IF BANANA$=="yes"THEN PRINT "I love bananas too!" INPUT asks a question, here you can only give two answers, yes and no so what this code means is, if you type yes then put i like bananas too! on the screen. But if you type no put okay then on the screen.
3そうだね
プレイ済み
返信[7]
親投稿
nate NJR1432
SPSET 0,0,0 SPSET puts a sprite on the screen.
3そうだね
プレイ済み
返信[8]
親投稿
nate NJR1432
SPSET 0,0,0 @MOVE SPOFS 0,X,Y,-10 B=BUTTON() IF B AND 1 THEN Y=Y-1 IF B AND 2 THEN Y=Y+1 IF B AND 4 THEN X=X-1 IF B AND 8 THEN X=X-1 GOTO @MOVE This makes a sprite move
3そうだね
プレイ済み
返信[9]
親投稿
BoogerFace BlueDog100
Awsome tell me more please
3そうだね
プレイ済み
返信[10]
親投稿
Pkyoshi19 Pokeyoshi19
no no no GOTO and labels aren't meant to be used as loops Nate To make loops it's either WHILE (statement) (stuff you want to do for as long as the statement is true) WEND or FOR I=0 TO (amount of times) (stuff you want to repeat) NEXT Anyways uh Adventurer, please read the manual
1そうだね
プレイ済み
返信[11]
親投稿
nate NJR1432
Dont really understand, that code works fine...
1そうだね
プレイ済み
返信[12]
親投稿
nate NJR1432
MON=0 @GO B=BUTTON() IF B AND #A THEN MON=MON+1 LOCATE 0,0PRINT MON GOTO @GO what this code says is if you press the a button add 1 to mon.
1そうだね
プレイ済み
返信[13]
親投稿
nate NJR1432
@Adventurer what would you like to learn next?
1そうだね
プレイ済み
返信[14]
親投稿
BoogerFace BlueDog100
could you tellme how to make text-based rpg's
1そうだね
プレイ済み
返信[15]
親投稿
nate NJR1432
well that would take a while... I know i'll work on a short program and give you the key when im done! :D
1そうだね
プレイ済み
返信[16]
親投稿
BoogerFace BlueDog100
I made these first two programs using some stuff you taught me. tell me what you think
1そうだね
プレイ済み
返信[17]
親投稿
nate NJR1432
Okay i'll look at those when i get the time :)
1そうだね
プレイ済み
返信[18]
親投稿
Pkyoshi19 Pokeyoshi19
Nate, the code you wrote: MON=0 @GO B=BUTTON() IF B AND #A THEN MON=MON+1 LOCATE 0,0PRINT MON GOTO @GO Most of your code is wrong. Instead, it should be: MON=0 WHILE 1 VSYNC 1 IF (BUTTON(1) AND 16)!=0 THEN INC MON LOCATE 0,0:?MON WEND Believe me, it'll work a lot better.
2そうだね
プレイ済み
返信[19]
親投稿
BoogerFace BlueDog100
Tell me what you think nate?
1そうだね
プレイ済み
返信[20]
親投稿
nate NJR1432
Oh yah sorry :p i saw your textrpg! its a lot better than anything i made when i was a begginer! :)
1そうだね
プレイ済み
返信[21]
親投稿
nate NJR1432
@Yoshi what does the WHILE command do?
1そうだね
プレイ済み
返信[22]
親投稿
nate NJR1432
@Adventurer have you tried my game, 'crashieplane'?
1そうだね
プレイ済み
返信[23]
親投稿
BoogerFace BlueDog100
OHHHH YEAHHH! I tried it! It was awsome!
1そうだね
プレイ済み
返信[24]
親投稿
nate NJR1432
thanks! and i updated it! check out my posts and you'll see the update key :D
1そうだね
プレイ済み
返信[25]
親投稿
BoogerFace BlueDog100
Tell me some more if you could:D
1そうだね
プレイ済み
返信[26]
親投稿
nate NJR1432
Okay but i gotta get off now, so i'll tell you more today or tomorrow :)
1そうだね
プレイ済み
返信[27]
親投稿
BoogerFace BlueDog100
Ok, When your back,could you tell me how to make menus as well?
0そうだね
プレイ済み
返信[28]
親投稿
Pkyoshi19 Pokeyoshi19
WHILE (statement) (commands) WEND If the statement is true, the program will do everything between WHILE and WEND and come back to WHILE. If the statement is false, the program skips everything between WHILE and WEND. There's also this. REPEAT (commands) UNTIL (statement) This does the same thing, except it will always run the commands at least once.
2そうだね
プレイ済み
返信[29]
親投稿
nate NJR1432
@Yoshi thanks! @adventurer heres some menu code.
1そうだね
プレイ済み
返信[30]
親投稿
BoogerFace BlueDog100
Awsome! could you tell me how to make fonts? ps. Here's a sneak peak at my new text adventure:Hauntedtext!
1そうだね
プレイ済み
返信[31]
親投稿
nate NJR1432
@Adventurer IDK how BTW this is my next to last post :(
1そうだね
プレイ済み
返信[32]
親投稿
BoogerFace BlueDog100
How do I get this to Reapeat endlessly?
0そうだね
プレイ済み
返信[33]
親投稿
komodo † 406mario
you put a label at the top and then put the goto command at the bottom so it will keep doing it repeatedly.
2そうだね
プレイ済み
返信[34]
親投稿
BoogerFace BlueDog100
Thx, But now i have a problem,The sprite is moving WAY to fast! Is there a substitute for WAIT that will work?
0そうだね
プレイ済み
返信[35]
親投稿
Reshiramax Reshiramax
You should change wait 10 to something like wait 30 or wait 50
2そうだね
プレイ済み
返信[36]
親投稿
nate NJR1432
hey adventurer do you wanna help on my new game?
1そうだね
プレイ済み
返信[37]
親投稿
Pkyoshi19 Pokeyoshi19
SPSET 0,596 WHILE 1 VSYNC 40 SPCHR 0,597 VSYNC 40 SPCHR 0,596 WEND Please guys, using labels with GOTO is unnecessary. Also, I'm too lazy to look it up right now, but you could make all of this into one line using SPANIM.
2そうだね
プレイ済み
返信[38]
親投稿
BoogerFace BlueDog100
Sure Nate! I'll do all the dialog!
1そうだね
プレイ済み
返信[39]
親投稿
nate NJR1432
Cool! its like pokemon! :D
1そうだね
プレイ済み
返信[40]
親投稿
BoogerFace BlueDog100
Oh wait,Never mind... it'd be too hard...
1そうだね
プレイ済み
返信[41]
親投稿
nate NJR1432
I'll program it! Can you do sprites?
1そうだね
プレイ済み
返信[42]
親投稿
BoogerFace BlueDog100
NOW THAT'S SOMETHING I CAN DO! I love making sprites!
1そうだね
プレイ済み
返信[43]
親投稿
nate NJR1432
Thx!
1そうだね
プレイ済み
返信[44]
親投稿
BoogerFace BlueDog100
Would you like me to work on them now?
1そうだね
プレイ済み
返信[45]
親投稿
nate NJR1432
sure! :) just make them look sorta like pokemon. :D
1そうだね
プレイ済み
返信[46]
親投稿
BoogerFace BlueDog100
Ohhh....But it might be reckognized as copyright, could I just create my own creatures?
1そうだね
プレイ済み
返信[47]
親投稿
nate NJR1432
yeah sure make 'em your own :D
1そうだね
プレイ済み