Thread: Varia Progress
View Single Post
  #228  
Old 11-23-2010, 04:14 PM
MrOmega MrOmega is offline
One More Time
MrOmega's Avatar
Join Date: Aug 2010
Location: TN, USA
Posts: 631
MrOmega is an unknown quantity at this point
Send a message via AIM to MrOmega Send a message via MSN to MrOmega Send a message via Yahoo to MrOmega
Well, here's may be something fun for those of you who like to develop. My Farball mini game needs about 150 more levels to be done, I figure I'd let some of you make levels for it. It's quick and simple, just follow the format I give below.

Just imagined each number is a object

NPC Code:

0 - Empty
1 - block
2 - Spike Top ( V )
3 - Spike Right ( < )
4 - Spike Bottom ( ^ )
5 - Spike Left ( > )
6 - Goal
7 - Player Start
8 - Ramp /|
/__|
9 - Ramp |\
|__\
10 - Ramp |ŻŻ/
|/
11 - Ramp \ŻŻ|
\|

All Levels are 15 by 10




Basically Here is what Level one looks like in code.

PHP Code:
{
  
1,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  1,
  
5,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,
  
5,  0,  0,  0,  0,  7,  0,  0,  0,  0,  0,  0,  0,  0,  3,
  
5,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,
  
5,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,
  
5,  0,  0,  0,  0,  0,  0,  0,  0,  0,  6,  0,  0,  0,  3,
  
5,  0,  0,  0,  0,  1,  0,  0,  0,  0,  0,  0,  0,  0,  3,
  
5,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,
  
5,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  3,
  
1,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  
}, 
just forum PM what you have and I'll go through it and see if I like it. Thank you!
__________________
Time is the fire in which we burn...
Up, Up, Down, Down, Left, Right, Left, Right, B, A, Select, Start! Now I got 99 LIVES!!!
Reply With Quote