-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
106 lines (97 loc) · 2.19 KB
/
config.js
File metadata and controls
106 lines (97 loc) · 2.19 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
module.exports = {
Skills: {
6: [ // Priest
19, // Focus Heal
37 // Immersion
],
7: [ // Mystic
5, // Titanic Favor
9 // Arun's Cleansing Touch
]
},
autoCast: true, // true = skills auto lockon and cast. false = pre-lockon onto targets and casting is done manually
autoCleanse: true, // enable mystic cleanse
//smartCleanse: true, // enable mystic cleanse
autoDps: true, // enable dps skills
autoPvP: true, // enables dps skills in pvp
autoDpsDelay: 10, // auto cast Delay
autoHeal: true, // enable healing skills
targetBoss: true, // if false, won't target bams (good for CU)
hpCutoff: 100, // (healing only) ignore members that have more HP% than this
maxDistance: 35, // in-game meters. can work up to 35m
maxVertical: 35, // (ignore targets at top of CS ladders, etc). can also be 35m
maxImmersionRange: 33, // Immersion desyncs past 36 meters
maxDebuffRange: 30, // plague or sleep or VoC or contagion
maxDPSRange: 35,
maxEStarsRange: 25, // the buff is max range 25
// sleep prioritize this class
splitSleep: true, // if healer false, split fear/sleep/gyre with 2 players
healer: true,
archer: false,
zerk: false,
lancer: false,
slayer: false,
sorc: false,
warrior: false,
reaper: false,
gunner: false,
brawler: false,
ninja: false,
valk: false,
// plague prioritize this class
phealer: true,
parcher: false,
pzerk: false,
plancer: false,
pslayer: false,
psorc: false,
pwarrior: false,
preaper: false,
pgunner: false,
pbrawler: false,
pninja: false,
pvalk: true,
disableSleep: false,
sleepPrioDpsBeforeHealer: false,
//eStarsPrioDpsBeforeHealer: false,
plaguePrioDpsBeforeHealer: false,
// priority targets
sleepyPlayers: {
0: [
"Wrong",
"Aleci"
]
},
freeStars: {
0: [
"Wrong",
"Coolie.Whistles"
]
},
plaguePrio: {
0: [
"Wrong",
"Aleci"
]
},
// don't lockon these people
blockList: { // CC && Mana Steal
0: [
"Wrong",
"Aleci"
]
},
dontDamage: {
0: [
"Wrong",
"Aleci"
]
},
dontHeal: {
0: [
"Result",
"Coolie.Whistles"
]
},
whatever: false
}