diff options
author | raylu <raylu@cmu.edu> | 2011-04-07 00:31:46 -0400 |
---|---|---|
committer | raylu <raylu@cmu.edu> | 2011-04-07 00:31:46 -0400 |
commit | a8e48c969b5b56f76a37121fe157b75398461e84 (patch) | |
tree | ef32cd90ef2274807c57114e1447d53fb0c3066a /pages/gallery.php | |
parent | f8c9eb5220afaf2f9a62f9a176a45913240f4081 (diff) | |
download | pathery-a8e48c969b5b56f76a37121fe157b75398461e84.tar.xz |
Import mazetest from Dropbox
Excluded stray /db.inc.php file
Diffstat (limited to 'pages/gallery.php')
-rw-r--r-- | pages/gallery.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/pages/gallery.php b/pages/gallery.php index 68c17ae..259ac2a 100644 --- a/pages/gallery.php +++ b/pages/gallery.php @@ -79,7 +79,54 @@ $map = GenerateMap( weight(3,3,3,4) //Teleports ); +//ABC's +$map = GenerateMap( + 19, 11, 12 , //width, height, rocks + weight(20,21,22,22,23) , //Walls + weight(3) , //Checkpoints + weight(0) //Teleports +); + +//Ultra Complex +$map = GenerateMap( + 18, 16, 12 , //width, height, rocks + weight(16,17,18,18) , //Walls + weight(5) , //Checkpoints + weight(5) //Teleports +); +//Tall tall map +$map = GenerateMap( + 18, 14, 20 , //width, height, rocks + weight(30) , //Walls + weight(1) , //Checkpoints + weight(1) //Teleports +); +//Thirty +$map = GenerateMap( + 18, 14, 20 , //width, height, rocks + weight(30) , //Walls + weight(1) , //Checkpoints + weight(1) //Teleports +); +//Simple +$map = GenerateMap( + 18, 9, 7 , //width, height, rocks + weight(15,16,17) , //Walls + weight(0) , //Checkpoints + weight(0) //Teleports +); +//huge +$map = GenerateMap( + 75, 20, 7 , //width, height, rocks + weight(100) , //Walls + weight(5) , //Checkpoints + weight(4) //Teleports +); +$a[0] = 't'; +$a[1] = 't'; +$a['1'] = 'hi'; +echo $a[1]; $mapdisplay = DisplayMap($map); $code = GenerateMapCode($map); |