-
Notifications
You must be signed in to change notification settings - Fork 11
/
config-default.php
68 lines (68 loc) · 1.53 KB
/
config-default.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
// Configurações necessárias para o bom funcionamento do OT AAC
// Configurações de banco de dados
$config['Database'] = array(
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'otaac', // Do not use numbers in the name of your database
);
// Configurações de servidor
$config['Server'] = array(
'name' => 'OpenTibia',
'title' => 'OT AAC - The best web application for Open Tibia Servers',
'tfs' => '1.0', // 1.0 or 0.3.6
'dir' => 'C:\\'
);
// Configurações de Engine
$config['Engine'] = array(
'layout' => 'default',
'theme' => 'otaac',
'url' => 'http://localhost/otaac/'
);
// Configurações de vocações ativas para a escolha do player
$config['Vocations'] = array(
1 => 'Sorcerer',
2 => 'Druid',
3 => 'Paladin',
4 => 'Knight'
);
// Configurações de todas as vocações existentes no servidor
$config['AllVocations'] = array(
0 => 'No vocation',
1 => 'Sorcerer',
2 => 'Druid',
3 => 'Paladin',
4 => 'Knight',
5 => 'Master Sorcerer',
6 => 'Elder Druid',
7 => 'Royal Paladin',
8 => 'Elite Knight'
);
// Configurações de cidades
$config['Cities'] = array(
0 => array(
'name' => 'Thais',
'x' => 2168,
'y' => 1265,
'z' => 7
),
1 => array(
'name' => 'Venore',
'x' => 1897,
'y' => 2654,
'z' => 6
)
);
// Configurações de mundos (servidores)
$config['Worlds'] = array(
0 => 'Parlon',
1 => 'Grihon'
);
// Configurações de rates
$config['Rates'] = array(
'exp' => 5,
'magic' => 7,
'skill' => 30,
'loot' => 3
);