Line | |
---|
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
|
---|
18 | $irpg_db="/home/nainwak/zZzZ/bot/irpg.db";
|
---|
19 |
|
---|
20 | // item database
|
---|
21 | $irpg_itemdb="/home/nainwak/zZzZ/bot/mapitems.db";
|
---|
22 |
|
---|
23 | // time modifiers file
|
---|
24 | $irpg_mod="/home/nainwak/zZzZ/bot/modifiers.txt";
|
---|
25 |
|
---|
26 | // active quest info file
|
---|
27 | $irpg_qfile="/home/nainwak/zZzZ/bot/questinfo.txt";
|
---|
28 |
|
---|
29 | // image to use for the top logo
|
---|
30 | $irpg_logo="logo.gif";
|
---|
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.