forked from OverlayPlugin/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradar-example.js
36 lines (34 loc) · 1.01 KB
/
radar-example.js
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
// Rename this file to `radar.js` and edit it to change the radar ui.
// This file is Javascript. Anything after "//" on a line is a comment.
// If you edit this file, remember to reload ACT or click the "Reload overlay"
// button on the raidboss CactbotOverlay.
// If there are errors in this file, they will appear in the OverlayPlugin.dll
// log window in ACT.
// You can add your own monster list here.
Options.CustomMonsters = {
// 'Any': {
// 'name': { // monster names
// 'en': 'ya-te-veo',
// 'cn': '食人花',
// 'ja': 'ヤテベオ',
// },
// 'hp': 1000, // minimum hp of the monster
// 'rank': 'Custom', // rank
// },
};
// You can also add different options to different ranks.
Options.RankOptions = {
// 'S': {
// DetectionRange: 100,
// TTS: true,
// Type: 'mob', // can be 'mob' or 'any'
// Enabled: true,
// },
// 'Custom': {
// DetectionRange: 500,
// TTS: false,
// PopSoundAlert: true,
// Type: 'any',
// Enabled: true,
// },
};