Advertisement
Bluefissure

user/radar.js

Feb 11th, 2021
1,231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'use strict';
  2.  
  3. // Rename this file to `radar.js` and edit it to change the radar ui.
  4. // This file is Javascript.  Anything after "//" on a line is a comment.
  5. // If you edit this file, remember to reload ACT or click the "Reload overlay"
  6. // button on the raidboss CactbotOverlay.
  7. // If there are errors in this file, they will appear in the OverlayPlugin.dll
  8. // log window in ACT.
  9.  
  10. Options.Language = 'cn';
  11.  
  12. // You can add your own monster list here.
  13. Options.CustomMonsters = {
  14.   'inkClaw': {
  15.     'name': {
  16.       'en': 'Ink Claw',
  17.       'cn': '墨染巨钳虾',
  18.     },
  19.     'rank': 'BozjaStar',
  20.   },
  21.   'tidebornAngel': {
  22.     'name': {
  23.       'en': 'Tideborn Angel',
  24.       'cn': '蓝海天使',
  25.     },
  26.     'rank': 'BozjaStar',
  27.   },
  28.   'fernFlower': {
  29.     'name': {
  30.       'en': 'Fern Flower',
  31.       'cn': '蕨花',
  32.     },
  33.     'rank': 'BozjaStar',
  34.   },
  35.   'viy': {
  36.     'name': {
  37.       'en': 'Viy',
  38.       'cn': '邪灵维',
  39.     },
  40.     'rank': 'BozjaStar',
  41.   },
  42.   'psoglav': {
  43.     'name': {
  44.       'en': 'Psoglav',
  45.       'cn': '索格拉夫',
  46.     },
  47.     'rank': 'BozjaStar',
  48.   },
  49.   'smok': {
  50.     'name': {
  51.       'en': 'Smok',
  52.       'cn': '斯莫克龙',
  53.     },
  54.     'rank': 'BozjaStar',
  55.   },
  56.   'patty': {
  57.     'name': {
  58.       'en': 'Patty',
  59.       'cn': '帕迪',
  60.     },
  61.     'rank': 'BozjaStar',
  62.   },
  63.   'clingyClare': {
  64.     'name': {
  65.       'en': 'Clingy Clare',
  66.       'cn': '黏人魔花克莱尔',
  67.     },
  68.     'rank': 'BozjaStar',
  69.   },
  70.   'birdOfBarathrum': {
  71.     'name': {
  72.       'en': 'Bird of Barathrum',
  73.       'cn': '深渊猛禽',
  74.     },
  75.     'rank': 'BozjaStar',
  76.   },
  77. };
  78.  
  79. // You can also add different options to different ranks.
  80. Options.RankOptions = {
  81.   'S': {
  82.     TTS: false,
  83.     Type: 'mob',
  84.   },
  85.   'BozjaStar': {
  86.     TTS: true,
  87.     Type: 'mob',
  88.     Enabled: true,
  89.   },
  90.   // 'Custom': {
  91.   //   DetectionRange: 500,
  92.   //   TTS: false,
  93.   //   PopSoundAlert: true,
  94.   //   Type: 'any',
  95.   // },
  96. };
  97.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement