Add project files.

This commit is contained in:
2025-09-12 19:42:46 -06:00
parent 0ffd916805
commit a4ff18076a
37 changed files with 6089 additions and 0 deletions

39
irpg/config.php Normal file
View File

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