How much of a noob? What do you know? Like commands. What commands do you know?
I need a set of codes i can copy and paste and edit to make a game
Root / Programming Questions / [.]
Freddy_Faz01Created:
Im a noob
How much of a noob? What do you know? Like commands. What commands do you know?Answer this with some detail please, also, its BASIC knowledge for a BASIC language... Heh get it? But seriously, most of this is basic to know, get a notebook, go to YouTube, go to the sb chat, these forums for programming help.. No one can (or has any time) to teach you how to make a game. But it depends.
New, files, acls, cls, bgmclear, bgclear, I really dont know how to code very well, actually not at all, I thought it woud be "basic"
I know how to make title screen, And texting animation
Lucky for you it is relatively basic.
So.
Let's.
Do.
This.
Use the command PRINT like this:
PRINT "(Enter ANYTHING here!)"Easy! Right? INPUT is a little harder. It asks a question and the answer gets stored as a variable.
INPUT "Ask a question here!";variable$If you're dealing with only numbers and only want numbers in response don't add a dollar sign at the end. Make sure to always add the dollar sign if you do want letters in the answer though. Now try this!
INPUT "What's your name";name$ PRINT "Hello there, ";name$;"!"
Those are the basics of BASIC. The really basic. Nowhere near all of them. That's just two commands! But it's how I started.
New, files, acls, cls, bgmclear, bgclear, I really dont know how to code very well, actually not at all, I thought it woud be "basic"Ha, try learning Java or C++ then you'll realize it is pretty BASIC. ;) You can learn pretty quick by starting simple and just getting a good grasp on what each (simple) command does. I always suggest following the exercises in the manual, such as setting up variables and inputs to calculate the radius of a circle and so forth.