diff -ur irpgsite.v0.5/config.php irpgsite.v0.5+johm+chschu/config.php --- irpgsite.v0.5/config.php Mon Jul 19 12:31:10 2004 +++ irpgsite.v0.5+johm+chschu/config.php Mon Jul 19 21:37:44 2004 @@ -17,6 +17,9 @@ // character database $irpg_db="/home/jotun/irpg.db"; +// item database +$irpg_itemdb="../mapitems.db"; + // time modifiers file $irpg_mod="/home/jotun/modifiers.txt"; @@ -35,5 +38,8 @@ // length-wise dimension of your map file $mapy = 500; + +// size of crosses for players and items on world map +$crosssize = 3; ?> diff -ur irpgsite.v0.5/makeworldmap.php irpgsite.v0.5+johm+chschu/makeworldmap.php --- irpgsite.v0.5/makeworldmap.php Mon Jul 19 12:31:10 2004 +++ irpgsite.v0.5+johm+chschu/makeworldmap.php Mon Jul 19 21:37:44 2004 @@ -1,7 +1,9 @@

World Map

-

[offline users are red, online users are blue]

+

[offline users are red, online users are blue, normal items are orange, unique items are yellow]

@@ -13,11 +13,18 @@ \n"; + } + while ($line=fgets($itemfile,1024)) { + list($x,$y,$type,$level) = explode("\t",trim($line)); + print " \"".htmlentities($type."\n"; } fclose($file); ?>