71 lines
1.8 KiB
PHP
71 lines
1.8 KiB
PHP
<?php
|
|
// admin nick
|
|
$admin_nick="admin";
|
|
|
|
// admin email
|
|
$admin_email="admin@mynet.org";
|
|
|
|
// web version
|
|
$irpg_version = "0.0.4";
|
|
|
|
// 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";
|
|
|
|
// your server's network info advertisement
|
|
// leave this empty if you don't have any special info or notes
|
|
// $irpg_irc_network_info="* This IRC Network requires SASL authentication using".
|
|
// " your forum username and password";
|
|
$irpg_irc_network_info="";
|
|
|
|
// 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;
|
|
?>
|