From a8e48c969b5b56f76a37121fe157b75398461e84 Mon Sep 17 00:00:00 2001 From: raylu Date: Thu, 7 Apr 2011 00:31:46 -0400 Subject: Import mazetest from Dropbox Excluded stray /db.inc.php file --- pages/gallery.php | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) (limited to 'pages') 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); -- cgit v1.2.3