40 lines
745 B
PHP
40 lines
745 B
PHP
<?php
|
|
|
|
$admin_email="you@host.com";
|
|
$admin_nick="HiASL";
|
|
|
|
// nickname of your bot
|
|
$irpg_bot="bot";
|
|
|
|
// your game's server
|
|
$irpg_network="irc.mynet.org";
|
|
|
|
// your game's channel
|
|
$irpg_chan="#G7";
|
|
|
|
// full or relative pathname to the DBs:
|
|
|
|
// character database
|
|
$irpg_db="/home/jotun/irpg.db";
|
|
|
|
// time modifiers file
|
|
$irpg_mod="/home/jotun/modifiers.txt";
|
|
|
|
// active quest info file
|
|
$irpg_qfile="/home/jotun/questinfo.txt";
|
|
|
|
// image to use for the top logo
|
|
$irpg_logo="idlerpg.png";
|
|
|
|
// directory in which your site is located from the root directory. my site
|
|
// is http://jotun.ultrazone.org/g7/, so it's "/g7/"
|
|
$BASEURL="/g7/";
|
|
|
|
// width-wise dimension of your map file
|
|
$mapx = 500;
|
|
|
|
// length-wise dimension of your map file
|
|
$mapy = 500;
|
|
|
|
?>
|