first commit

This commit is contained in:
2023-09-30 07:13:16 -06:00
commit 21e4690338
31 changed files with 2349 additions and 0 deletions

39
config.php Normal file
View File

@@ -0,0 +1,39 @@
<?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;
?>