Hello
I'm looking to team up, join forces or recruit anyone who would like to help me make a SNES type game with DBPro! I remember how much fun it was to play SNES games back in the day.
Now to get to the point I really need a programmer because I'm a better artist than a programmer, not that I haven't tried to programmed before it's just that I can't figure it out!!!
For example I've been trying for over five years to make a complete game with DBPro, I even got the "Beginner's guide to DARKBASIC game programming" book and still I cannnot complete a game with all that I've learned.
Anyway here's an sample code of the game I'm trying to create:
SET IMAGE COLORKEY 255,0,255
HIDE MOUSE
CLS
LOAD BITMAP "Sprite 01.png",1
GET IMAGE 1,0,0,32,32
PX = 300
PY = 240
RX = 0
RY = 0
GX = 0
GY = 0
BX = 0
BY = 0
REPEAT
SPRITE 1,PX,PY,1
IF UPKEY() = 1
PY = PY -1
ENDIF
IF DOWNKEY() = 1
PY = PY +1
ENDIF
IF LEFTKEY() = 1
PX = PX -1
ENDIF
IF RIGHTKEY() = 1
PX = PX +1
ENDIF
LOAD BITMAP "Test Map.png",2
COPY BITMAP 2,0
SET CURRENT BITMAP 0
R_COLLISION = 1 AND RGB(255,0,0)
LOAD IMAGE "Red Collision.png",3
SPRITE 3,RX,RY,3
IF TRUE = 1
SPRITE 3,RX,RY,3 = R_COLLISION
ENDIF
IF SPRITE COLLISION(1,R_COLLISION)
END
ENDIF
PASTE SPRITE 3,0,0
G_COLLISION = 1 AND RGB(0,255,0)
LOAD IMAGE "Green Collision.png",4
SPRITE 4,GX,GY,4
IF TRUE = 1
SPRITE 4,GX,GY,4 = G_COLLISION
ENDIF
IF SPRITE COLLISION(1,G_COLLISION)
ENDIF
B_COLLISION = 1 AND RGB(0,0,255)
LOAD IMAGE "Blue Collision.png",5
SPRITE 5,BX,BY,5
IF TRUE = 1
SPRITE 5,BX,BY,5 = B_COLLISION
ENDIF
IF SPRITE COLLISION(1,B_COLLISION)
ENDIF
UNTIL MOUSECLICK() = 1
END
However this code is one of the many that I've wrote but also needs extreme help. I have already surfed most or all of the TGC forums for tutorials on 2D style games but none seem to really give me a straight answer to the many questions I have!
Here are some of my 2D style sprites & tilesets artwork that I have created :
[img]<a href="http://s38.photobucket.com/albums/e113/Darknight79/?action=view¤t=PlayerU1.jpg" target="_blank"><img src="http://i38.photobucket.com/albums/e113/Darknight79/PlayerU1.jpg" border="0" alt="Moon Knight Sprite 02"></a>[/img]
[img]<a href="http://s38.photobucket.com/albums/e113/Darknight79/?action=view¤t=PlayerD1.jpg" target="_blank"><img src="http://i38.photobucket.com/albums/e113/Darknight79/PlayerD1.jpg" border="0" alt="Moon Knight Sprite 01"></a>[/img]
[img]<a href="http://s38.photobucket.com/albums/e113/Darknight79/?action=view¤t=Tileset01.png" target="_blank"><img src="http://i38.photobucket.com/albums/e113/Darknight79/Tileset01.png" border="0" alt="Tileset 01"></a>[/img]
[img]<a href="http://s38.photobucket.com/albums/e113/Darknight79/?action=view¤t=Tileset02.png" target="_blank"><img src="http://i38.photobucket.com/albums/e113/Darknight79/Tileset02.png" border="0" alt="Tileset 02"></a>[/img]
[img]<a href="http://s38.photobucket.com/albums/e113/Darknight79/?action=view¤t=OriginofSpiderMan-05.jpg" target="_blank"><img src="http://i38.photobucket.com/albums/e113/Darknight79/OriginofSpiderMan-05.jpg" border="0" alt="Spiderman Origin"></a>[/img]
[img]<a href="http://s38.photobucket.com/albums/e113/Darknight79/?action=view¤t=TitleScreen.png" target="_blank"><img src="http://i38.photobucket.com/albums/e113/Darknight79/TitleScreen.png" border="0" alt="Title Screen"></a>[/img]