v0.0.2
This commit is contained in:
61
irpg-web/config.php
Normal file
61
irpg-web/config.php
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
// admin nick
|
||||
$admin_nick="admin";
|
||||
|
||||
// admin email
|
||||
$admin_email="admin@mynet.org";
|
||||
|
||||
// your game's bot nickname
|
||||
$irpg_bot="IdleBot";
|
||||
|
||||
// your game's server to connect to
|
||||
$irpg_network="irc.mynet.org:7000";
|
||||
|
||||
// your game's channel
|
||||
$irpg_chan="#IdleRPG";
|
||||
|
||||
// your server's network name advertisement
|
||||
$irpg_irc_network_name="MyNet IRC Network";
|
||||
|
||||
// your server's network address advertisement
|
||||
$irpg_irc_network_address="ircs://irc.mynet.org:7000";
|
||||
|
||||
// base directory of your game's url
|
||||
// my site is https://www.mynet.org/irpg/, so it's "/irpg/"
|
||||
$irpg_base_dir="/irpg/";
|
||||
|
||||
// url of your forum site
|
||||
$irpg_forum_url="https://www.mynet.org/";
|
||||
|
||||
// type of site email disabled/smtp/php
|
||||
$irpg_site_email="disabled";
|
||||
|
||||
// full or relative pathname to the DBs:
|
||||
|
||||
// character database
|
||||
$irpg_db="/home/user/private/idlerpg/irpg.db";
|
||||
|
||||
// time modifiers file
|
||||
$irpg_mod="/home/user/private/idlerpg/modifiers.txt";
|
||||
|
||||
// active quest info file
|
||||
$irpg_qfile="/home/user/private/idlerpg/questinfo.txt";
|
||||
|
||||
// image to use for the top logo
|
||||
$irpg_logo="idlerpg_ff0000.png";
|
||||
|
||||
// stylesheet to use g7/rw
|
||||
$irpg_stylesheet = "rw.css";
|
||||
|
||||
// width-wise dimension of your map file
|
||||
// this does not appear to be used anywhere in the web
|
||||
// it appears that all PHP map files use 500,500 images,
|
||||
// regardless of what you set here
|
||||
$irpg_mapx=500;
|
||||
|
||||
// length-wise dimension of your map file
|
||||
// this does not appear to be used anywhere in the web
|
||||
// it appears that all PHP map files use 500,500 images,
|
||||
// regardless of what you set here
|
||||
$irpg_mapy=500;
|
||||
?>
|
||||
Reference in New Issue
Block a user