One More Time
|
 |
Join Date: Aug 2010
Location: TN, USA
Posts: 631
|
|
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, 1
},
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!!!
|
|