changeset 23:72c78e1e2b3c gmap2

Added world information.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 08 Jan 2011 15:43:47 +0200
parents 2ca80ace5172
children f74739f637cf
files tools/world.php
diffstat 1 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/world.php	Sat Jan 08 15:43:47 2011 +0200
@@ -0,0 +1,15 @@
+<?php
+$worldMap = array("ox" => 8192, "oy" => 8192, "w" => 16384, "h" => 16384);
+
+$continentList = array(
+  // ID                   Name           Xoffs   Yoffs  spec    hasmap  width   height
+  "laenor"      => array("Laenor",       1    ,  1    , FALSE , TRUE  , 827   , 781 ),
+  "rothikgen"   => array("Rothikgen",    1311 , -1255 , FALSE , TRUE  , 480   , 480 ),
+  "lucentium"   => array("Lucentium",   -634  ,  2345 , FALSE , TRUE  , 700   , 500 ),
+  "furnachia"   => array("Furnachia",    1211 ,  1155 , FALSE , TRUE  , 440   , 480 ),
+  "desolathya"  => array("Desolathya",  -1210 ,  820  , FALSE , TRUE  , 540   , 530 ),
+
+  "renardy"     => array("Renardy",      2068 , -910  , TRUE  , TRUE  , 168   , 86  ),
+  "limbo"       => array("Limbo",           0 ,  0    , TRUE  , FALSE , 0     , 0   ),
+);
+?>