-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua.example
58 lines (58 loc) · 1.32 KB
/
config.lua.example
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
AUTH_ADDRESS = "auth.example.com"
REALM_NAME = "ExampleRealm"
TOONS = {
{
accountName = "wowbot1",
password = "password",
toonName = "Warrior",
class = WARRIOR,
--spec = PROT,
race = GNOME,
gender = MALE,
--professions = { MINING, ENGINEERING },
-- gnome warrior engineer is best miner,
-- due to Mining Helmet +5 (Mail armor) that only engineers can wear,
-- and Gnome's Engineering +15.
},
{
accountName = "wowbot2",
password = "password",
toonName = "Priest",
class = PRIEST,
--spec = HOLY/DISC,
race = DWARF,
gender = FEMALE,
--professions = { TAILORING, ENCHANTING, FISHING },
},
{
accountName = "wowbot3",
password = "password",
toonName = "Mage",
class = MAGE,
--spec = ARCANE,
race = GNOME,
gender = FEMALE,
--professions = { ALCHEMY, HERBALISM },
},
{
accountName = "wowbot4",
password = "password",
toonName = "Rogue",
class = ROGUE,
--spec = SUBTLETY/ASSASSINATION,
race = GNOME,
gender = FEMALE,
--professions = { SKINNING, LEATHERWORKING, COOKING },
},
--[[ player
{
class = PALADIN,
--spec = RETRIBUTION,
race = DWARF,
--professions = { BLACKSMITHING },
},
--]]
-- skipping first aid because we've got two healers.
-- was gonna skip fishing, but it's needed for some alchemy recipes.
-- now each bot has one gathering profession (skinning counts).
}