But that you don't have much prior knowledge of coding, I would creating a text adventure. then when you get better at coding, then you can make another horror game, or recreate the first game in 3D.
$1.99. Youritos is another one. ( Your Doritos) You become twice as strong (same price) And Spicy Youritos, 2x as strong and the ability to breathe fire. ($3.99) Mission: Collect 1 Mountain Sew, 1 Youritos, and 1 Spicy Youritos, then give it to some guy. Then you get some money, and a sniper rifle, so you can hit 360 noscopes.
Thats fine. I tried to explain it the best I could. Let my try that again. Just use the code here, and change the numbers around, you might be able to figure it out.
Oh. Sorry. When you create a sprite the first number is the ID. So it would be like this:
SPSET ID, BLAH,BLAH
SPOFS ID,X,Y' X would set how much left or right the sprite would be, and Y would be up down. The center X,Y coordinates would be 200,120. the max amount they could be would be 399-X and 239-Y. SPSCALE is the size. ID, WIDTH, and the HEIGHT.
Like this:
ACLS
SPSET 0,0,144
SPSCALE 0,0.75,0.75
@LOOP
B=BUTTON()
SPOFS 0,X,Y
IF B AND #UP THEN DEC Y,1'Increase the speed by increasing 1
IF B AND #DOWN THEN INC Y,1
IF B AND #LEFT THEN DEC X,1
IF B AND #RIGHT THEN INC X,1
WAIT 5'Increase speed by lowering 5
GOTO @LOOP
Ok. I'm not so good at making games, but could I join? I was thinking about making a MANCALA game. If you didn't know, historians believe it is the oldest game in the world!
I expected more when I downloaded this, but I understand that this is in alpha stage. Right when I started, I knew that you need to add WAIT when you press a button. [WAIT 15 would be perfect] Also add slash sounds when you or the enemy attacks. If you need any help, just ask me.