mirror of
https://github.com/GreenComfyTea/MHR-Overlay.git
synced 2026-01-24 20:38:03 -08:00
Fixed player id issues, refactored monster update function, implemented blast, poison and wyvern riding damage
This commit is contained in:
2
reframework/autorun/MHR_Overlay/Misc/Buffs.txt
Normal file
2
reframework/autorun/MHR_Overlay/Misc/Buffs.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
Buffs location:
|
||||
snow.player.PlayerManager -> <PlayerData> k_BackingField -> [0]
|
||||
@@ -1796,7 +1796,9 @@ function config.init()
|
||||
kunai_damage = true,
|
||||
installation_damage = true, -- hunting_installations like ballista, cannon, etc.
|
||||
otomo_damage = true,
|
||||
monster_damage = true -- note that installations during narwa fight are counted as monster damage
|
||||
monster_damage = true, -- note that installations during narwa fight are counted as monster damage
|
||||
poison_damage = true,
|
||||
blast_damage = true,
|
||||
},
|
||||
|
||||
spacing = {
|
||||
@@ -2073,7 +2075,7 @@ function config.init_module()
|
||||
|
||||
config.init();
|
||||
config.load();
|
||||
config.current_config.version = "v1.9.1";
|
||||
config.current_config.version = "v1.10";
|
||||
|
||||
language.update(table_helpers.find_index(language.language_names, config.current_config.global_settings.language, false));
|
||||
|
||||
|
||||
@@ -228,6 +228,8 @@ language.default_language = {
|
||||
installation_damage = "Installation Damage",
|
||||
otomo_damage = "Otomo Damage",
|
||||
monster_damage = "Monster Damage",
|
||||
poison_damage = "Poison Damage",
|
||||
blast_damage = "Blast Damage",
|
||||
|
||||
damage = "Damage",
|
||||
|
||||
@@ -253,7 +255,7 @@ language.default_language = {
|
||||
hotkeys = "Hotkeys",
|
||||
all_UI = "All UI",
|
||||
assign_new_key = "Assign new key",
|
||||
press_any_key = "Press any key..."
|
||||
press_any_key = "Press any key...",
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user