Last change
on this file since 5862 was 4283, checked in by Daimonos Tereutes, 14 years ago |
suppression des shortopentags
|
File size:
1.2 KB
|
Rev | Line | |
---|
[1451] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | $admin_email="tereutes@nainwak.com";
|
---|
| 4 | $admin_nick="DT";
|
---|
| 5 |
|
---|
| 6 | // nickname of your bot
|
---|
| 7 | $irpg_bot="Schlavbeuk";
|
---|
| 8 |
|
---|
| 9 | // your game's server
|
---|
| 10 | $irpg_network="irc.netrusk.net";
|
---|
| 11 |
|
---|
| 12 | // your game's channel
|
---|
| 13 | $irpg_chan="#zzz";
|
---|
| 14 |
|
---|
| 15 | // full or relative pathname to the DBs:
|
---|
| 16 |
|
---|
| 17 | // character database
|
---|
[4283] | 18 | $irpg_db="/home2/zZzZ/bot/irpg.db";
|
---|
[1451] | 19 |
|
---|
| 20 | // item database
|
---|
[4283] | 21 | $irpg_itemdb="/home2/zZzZ/bot/mapitems.db";
|
---|
[1451] | 22 |
|
---|
| 23 | // time modifiers file
|
---|
[4283] | 24 | $irpg_mod="/home2/zZzZ/bot/modifiers.txt";
|
---|
[1451] | 25 |
|
---|
| 26 | // active quest info file
|
---|
[4283] | 27 | $irpg_qfile="/home2/zZzZ/bot/questinfo.txt";
|
---|
[1451] | 28 |
|
---|
| 29 | // image to use for the top logo
|
---|
[1453] | 30 | $irpg_logo="logo.gif";
|
---|
[1451] | 31 |
|
---|
| 32 | // directory in which your site is located from the root directory. my site
|
---|
| 33 | // is http://jotun.ultrazone.org/g7/, so it's "/g7/"
|
---|
| 34 | $BASEURL="/";
|
---|
| 35 |
|
---|
| 36 | // width-wise dimension of your map file
|
---|
| 37 | $mapx = 500;
|
---|
| 38 |
|
---|
| 39 | // length-wise dimension of your map file
|
---|
| 40 | $mapy = 500;
|
---|
| 41 |
|
---|
| 42 | // size of crosses for players and items on world map
|
---|
| 43 | $crosssize = 3;
|
---|
| 44 |
|
---|
| 45 | // language
|
---|
| 46 | $language = 'fr_FR';
|
---|
| 47 |
|
---|
| 48 | // ordre des objets
|
---|
| 49 | $item_order = Array ('gloves', 'weapon', 'tunic', 'leggings', 'shield', 'helm', 'boots', 'charm', 'ring', 'amulet');
|
---|
| 50 |
|
---|
| 51 | // format de la date voir http://fr.php.net/manual/fr/function.strftime.php
|
---|
| 52 | $dateformat = "%a %e %b %Y %T"
|
---|
| 53 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.