プレイ日記
ArminLover Ceradyne
I have absolutely no clue what to do in this game? Give me a step by step as to how you make a Final Fantasy style RPG.
4そうだね
プレイ済み
返信[1]
親投稿
Bradley JustGreat
If you have no clue how to program, you're gonna have a hard time doing that. I suggest you start with the online guide located on the main page.
1そうだね
プレイ済み
返信[2]
親投稿
mystman12 mystman12
Yeah, if you're not sure what you're doing, you're going to have to start with smaller, simpler programs before you can make a full fledged RPG. A game like that takes a lot of time and effort, and good knowledge of how to program. If you try immediately making some huge game, you'll just end up frustrated that you can't do it.
1そうだね
プレイ済み
返信[3]
親投稿
ArminLover Ceradyne
I just wanna make SOMETHING. All gotten so far was nothing...
1そうだね
プレイ済み
返信[4]
親投稿
Bradley JustGreat
Not to discourage, but let's not forget that nearly every great game ever made had a team of people behind it. (and better programming languages :z)
1そうだね
プレイ済み
返信[5]
親投稿
Bradley JustGreat
It's possible, but it will take you longer than you expect. I encourage you to at least try programming to see if you enjoy it, but it's not for everyone.
1そうだね
プレイ済み
返信[6]
親投稿
ArminLover Ceradyne
How do you try if you have no clue whatsoever as to what to do.
0そうだね
プレイ済み
返信[7]
親投稿
Bradley JustGreat
My suggestion is learn how to use the commands PRINT and IF, then move on to using variables and rendering sprites. (I actually have little experience with SmileBASIC, but understand programming languages enough to start you up.) Never forget that you have the vast Internet in your hands if you want to learn something. At the very least, have fun exploring programming.
1そうだね
プレイ済み
返信[8]
親投稿
mystman12 mystman12
Here, I gave these tips to someone else, I'll copy/paste it: It's probably a good idea to check out the online tutorial on the main menu, and then read through some of the game's manual. It takes some time and patience to learn, but once you grasp the basics it's pretty easy to start picking up speed! For starters, here's an introductory program you can try:
1そうだね
プレイ済み
返信[9]
親投稿
mystman12 mystman12
Type this in EDIT mode (Minus the comments after ') CLS 'This command clears all text from the screen. @LOOP 'This acts as a marker, and we can make the code come back here later PRINT "HELLO WORLD!" 'This will make the words in the quotes appear on screen GOTO @____ 'Fill in the blank! You want this command to return to the @ earlier in the code!
1そうだね
プレイ済み
返信[10]
親投稿
mystman12 mystman12
When you return to RUN mode, type RUN and press ENTER. This will run the code you entered in EDIT mode. If you did it right, the screen should fill up with "HELLO WORLD!". What's happening is the code first reaches the command to clear the screen, then it reaches a command telling it to PRINT the text, then it reaches a command telling it to return to the line with the desired @ label.
1そうだね
プレイ済み