40 lines
798 B
PHP
40 lines
798 B
PHP
<?php
|
|
|
|
$admin_email="deepend@tilde.club";
|
|
$admin_nick="deepend";
|
|
|
|
// nickname of your bot
|
|
$irpg_bot="idlerpg";
|
|
|
|
// your game's server
|
|
$irpg_network="club.newnet.net";
|
|
|
|
// your game's channel
|
|
$irpg_chan="#idleland";
|
|
|
|
// full or relative pathname to the DBs:
|
|
|
|
// character database
|
|
$irpg_db="/home/newnet/idlerpgbot/irpg.db";
|
|
|
|
// time modifiers file
|
|
$irpg_mod="/home/newnet/idlerpgbot/modifiers.txt";
|
|
|
|
// active quest info file
|
|
$irpg_qfile="/home/newnet/idlerpgbot/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="/";
|
|
|
|
// width-wise dimension of your map file
|
|
$mapx = 500;
|
|
|
|
// length-wise dimension of your map file
|
|
$mapy = 500;
|
|
|
|
?>
|