

DragonHelper
Активный0.0
Установок
0
Последнее обновление
8 месяцев назад
Версии
1.20.4 — 1.21.1
Клиент
Fabric
Утилиты
DragonHelper
DragonHelper is a QOL mod for any sort of Dragon Simulator server out there, designed to make your play experience better!
The mod is designed to be compatible with any sort of dragon simulator server with any sort of features, so it uses a configuration system to define attributes that cause the below features to work.
Current features:
- Rare dragon and golem notifications
- The ability to disable summoning eye placement, other player loot, and loot number texts
- Multiple UI elements designed to track kills and slayer quest progress
- Auto-sell
If you are interested in tracking data on another server that is not specified by default in this mod, you'll need to follow the steps below.
- Open your
mods
folder, navigate to the root game instance directory, and find theconfig
folder. - Find and open the
servers.json
file within thedragonhelper
folder, located inside of theconfig
folder that you opened in step 1. - Add a new server to the list in JSON format. The server name MUST be lowercased.
- Add configuration keys to your new server. Change the values associated with each configuration key to the associated lowercase text/command present on the new server. For example, if I wanted to add a new server where I can auto-sell, and the server's sell command is
/sellallitems
, I would add the following to my server's json:"auto-sell-normal": "sellallitems"
Example server.json file:
{
"examplenewserver": {
"auto-sell-normal": "sellallitems"
},
"dragfights": {
"eye-place-contains-text": "placed a summoning eye",
"dragon-drop-contains-text": " has obtained ",
"dragon-spawn-contains-text": "has spawned",
"auto-sell-normal": "sellall",
"kill-tracking-command": "debugkill",
"kill-contains-text": "you killed",
"pvp-protection-message-contains": "you can\u0027t pvp here"
},
"dragnet": {
"dragon-drop-contains-text": " has obtained ",
"rng-meter-update-starts-text": "rng meter -",
"pvp-protection-message-contains": "you can\u0027t pvp here",
"dragon-spawn-contains-text": "has spawned",
"eye-place-contains-text": "placed a summoning eye",
"protector-name-contains-text": "protector",
"auto-sell-normal": "sell",
"rng-meter-load-contains-text": "rng meter experience",
"lootnum-contains-text": "lootnum",
"slayer-exp-load-contains-text": "slayer xp experience",
"kill-contains-text": "you killed",
"slayer-exp-update-contains-text": "\u003e total xp",
"has-infernal-dragons": true,
"rng-meter-tracking-command": "debugmeter",
"auto-sell-eyes": "eyes",
"experiments-npc-name": "CIT-e98c26597f30",
"slayer-exp-tracking-command": "debugslayerxp",
"auto-sell-special": "specialsell",
"renew-experiments-command": "renewexperiments",
"kill-tracking-command": "debugkill"
}
}