Discussion

I want make game

0

japanese 2020-06-16 11:21

Long time no see :)
I want make a game
But failed many times ; (
Please give me something subject suitable for first time .


was8bit 2020-06-16 12:20

PONG

https://m.youtube.com/watch?v=it0sf4CMDeM


was8bit 2020-06-16 12:23

  1. https://lowresnx.inutilis.com/topic.php?id=312


was8bit 2020-06-16 12:42

  1. https://lowresnx.inutilis.com/topic.php?id=1269

  2. https://lowresnx.inutilis.com/topic.php?id=1270


was8bit 2020-06-16 14:06 (Edited)

The key points are:

Define sprite:
SPRITE spr#,x,y,cell#
SPRITE spr# PAL pal# SIZE size#

Move sprite:
SPRITE spr#,newx,newy,

Sprite Contact:
IF SPRITE HIT(ballSpr#,paddleSpr#) THEN
IF HIT=paddleSpr# THEN

END IF
END If

Sprite off screen:
IF ballX<0 THEN

ELSE IF ballX>160 THEN

END IF


japanese 2020-06-17 00:40

thanks!
I try this :)


was8bit 2020-06-17 04:52 (Edited)

Good luck... :)

And Please post back here and attach your code here if you have any trouble, i would be happy to help if i can :)


was8bit 2020-06-17 04:52 (Edited)

I have learned it is best to keep things simple, this is my best advice to you :)


Log in to reply.