mirror of
https://github.com/GreenComfyTea/MHR-Overlay.git
synced 2026-01-26 05:18:06 -08:00
Compare commits
5 Commits
c68d6571ec
...
cc93a617f1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cc93a617f1 | ||
|
|
869656503b | ||
|
|
5d6371a05c | ||
|
|
c8a3431697 | ||
|
|
720d451a0e |
@@ -15,7 +15,7 @@ Exposes in-game data about monsters, creatures, players and damage. Draws a high
|
|||||||
* **[Troubleshooting](https://github.com/GreenComfyTea/MHR-Overlay/wiki/Troubleshooting)**
|
* **[Troubleshooting](https://github.com/GreenComfyTea/MHR-Overlay/wiki/Troubleshooting)**
|
||||||
|
|
||||||
# Requirements
|
# Requirements
|
||||||
1. [REFramework](https://www.nexusmods.com/monsterhunterrise/mods/26) (v1.3.4 or above);
|
1. [REFramework](https://www.nexusmods.com/monsterhunterrise/mods/26) (v1.3.5 or above);
|
||||||
2. [REFramework Direct2D](https://www.nexusmods.com/monsterhunterrise/mods/134) (v0.4.0 or above).
|
2. [REFramework Direct2D](https://www.nexusmods.com/monsterhunterrise/mods/134) (v0.4.0 or above).
|
||||||
|
|
||||||
# How to install:
|
# How to install:
|
||||||
@@ -34,7 +34,7 @@ Exposes in-game data about monsters, creatures, players and damage. Draws a high
|
|||||||
**coavins** - creator of [coavins damage meter](https://www.nexusmods.com/monsterhunterrise/mods/68) mod.
|
**coavins** - creator of [coavins damage meter](https://www.nexusmods.com/monsterhunterrise/mods/68) mod.
|
||||||
|
|
||||||
**neatnet** - Korean translation.
|
**neatnet** - Korean translation.
|
||||||
**s9000008** - Traditional Chinese translation.
|
**s9000008, mcc1** - Traditional Chinese translation.
|
||||||
**etnAtker** - Simplified Chinese translation.
|
**etnAtker** - Simplified Chinese translation.
|
||||||
**AKILAND0214** - Japanese translation.
|
**AKILAND0214** - Japanese translation.
|
||||||
***
|
***
|
||||||
|
|||||||
@@ -756,7 +756,7 @@ function config.init()
|
|||||||
},
|
},
|
||||||
|
|
||||||
value_label = {
|
value_label = {
|
||||||
visibility = true,
|
visibility = false,
|
||||||
text = "%.0f/%.0f", -- current_health/max_health
|
text = "%.0f/%.0f", -- current_health/max_health
|
||||||
offset = {
|
offset = {
|
||||||
x = 5,
|
x = 5,
|
||||||
@@ -775,7 +775,7 @@ function config.init()
|
|||||||
},
|
},
|
||||||
|
|
||||||
percentage_label = {
|
percentage_label = {
|
||||||
visibility = true,
|
visibility = false,
|
||||||
text = "%5.1f%%",
|
text = "%5.1f%%",
|
||||||
|
|
||||||
offset = {
|
offset = {
|
||||||
@@ -803,7 +803,7 @@ function config.init()
|
|||||||
|
|
||||||
size = {
|
size = {
|
||||||
width = 200,
|
width = 200,
|
||||||
height = 20
|
height = 7
|
||||||
},
|
},
|
||||||
|
|
||||||
outline = {
|
outline = {
|
||||||
@@ -843,18 +843,18 @@ function config.init()
|
|||||||
},
|
},
|
||||||
|
|
||||||
stamina = {
|
stamina = {
|
||||||
visibility = true,
|
visibility = false,
|
||||||
|
|
||||||
offset = {
|
offset = {
|
||||||
x = 10,
|
x = 10,
|
||||||
y = 37
|
y = 7
|
||||||
},
|
},
|
||||||
|
|
||||||
text_label = {
|
text_label = {
|
||||||
visibility = true,
|
visibility = false,
|
||||||
text = "%s",
|
text = "%s",
|
||||||
offset = {
|
offset = {
|
||||||
x = 15 - 10,
|
x = -70,
|
||||||
y = 0
|
y = 0
|
||||||
},
|
},
|
||||||
color = 0xFFA3F5F0,
|
color = 0xFFA3F5F0,
|
||||||
@@ -870,120 +870,7 @@ function config.init()
|
|||||||
},
|
},
|
||||||
|
|
||||||
value_label = {
|
value_label = {
|
||||||
visibility = true,
|
visibility = false,
|
||||||
text = "%.0f/%.0f", -- current_health/max_health
|
|
||||||
offset = {
|
|
||||||
x = 55 - 10,
|
|
||||||
y = 17
|
|
||||||
},
|
|
||||||
color = 0xFFFFFFFF,
|
|
||||||
|
|
||||||
shadow = {
|
|
||||||
visibility = true,
|
|
||||||
offset = {
|
|
||||||
x = 1,
|
|
||||||
y = 1
|
|
||||||
},
|
|
||||||
color = 0xFF000000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
percentage_label = {
|
|
||||||
visibility = true,
|
|
||||||
text = "%5.1f%%",
|
|
||||||
|
|
||||||
offset = {
|
|
||||||
x = 135,
|
|
||||||
y = 17
|
|
||||||
},
|
|
||||||
color = 0xFFFFFFFF,
|
|
||||||
|
|
||||||
shadow = {
|
|
||||||
visibility = true,
|
|
||||||
offset = {
|
|
||||||
x = 1,
|
|
||||||
y = 1
|
|
||||||
},
|
|
||||||
color = 0xFF000000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
timer_label = {
|
|
||||||
visibility = true,
|
|
||||||
text = "%2.0f:%02.0f",
|
|
||||||
|
|
||||||
offset = {
|
|
||||||
x = 140,
|
|
||||||
y = 17
|
|
||||||
},
|
|
||||||
color = 0xFFFFFFFF,
|
|
||||||
|
|
||||||
shadow = {
|
|
||||||
visibility = true,
|
|
||||||
offset = {
|
|
||||||
x = 1,
|
|
||||||
y = 1
|
|
||||||
},
|
|
||||||
color = 0xFF000000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
bar = {
|
|
||||||
visibility = true,
|
|
||||||
offset = {
|
|
||||||
x = 10 - 10,
|
|
||||||
y = 17
|
|
||||||
},
|
|
||||||
|
|
||||||
size = {
|
|
||||||
width = 185,
|
|
||||||
height = 7
|
|
||||||
},
|
|
||||||
|
|
||||||
outline = {
|
|
||||||
visibility = true,
|
|
||||||
thickness = 1,
|
|
||||||
offset = 0,
|
|
||||||
style = "Center"
|
|
||||||
},
|
|
||||||
|
|
||||||
colors = {
|
|
||||||
foreground = 0xB966CCC5,
|
|
||||||
background = 0x88000000,
|
|
||||||
outline = 0xC0000000
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
rage = {
|
|
||||||
visibility = true,
|
|
||||||
|
|
||||||
offset = {
|
|
||||||
x = 10,
|
|
||||||
y = 61
|
|
||||||
},
|
|
||||||
|
|
||||||
text_label = {
|
|
||||||
visibility = true,
|
|
||||||
text = "%s",
|
|
||||||
offset = {
|
|
||||||
x = 5,
|
|
||||||
y = 0
|
|
||||||
},
|
|
||||||
color = 0xFFFF9393,
|
|
||||||
|
|
||||||
shadow = {
|
|
||||||
visibility = true,
|
|
||||||
offset = {
|
|
||||||
x = 1,
|
|
||||||
y = 1
|
|
||||||
},
|
|
||||||
color = 0xFF000000
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
value_label = {
|
|
||||||
visibility = true,
|
|
||||||
text = "%.0f/%.0f", -- current_health/max_health
|
text = "%.0f/%.0f", -- current_health/max_health
|
||||||
offset = {
|
offset = {
|
||||||
x = 45,
|
x = 45,
|
||||||
@@ -1002,7 +889,7 @@ function config.init()
|
|||||||
},
|
},
|
||||||
|
|
||||||
percentage_label = {
|
percentage_label = {
|
||||||
visibility = true,
|
visibility = false,
|
||||||
text = "%5.1f%%",
|
text = "%5.1f%%",
|
||||||
|
|
||||||
offset = {
|
offset = {
|
||||||
@@ -1022,7 +909,7 @@ function config.init()
|
|||||||
},
|
},
|
||||||
|
|
||||||
timer_label = {
|
timer_label = {
|
||||||
visibility = true,
|
visibility = false,
|
||||||
text = "%2.0f:%02.0f",
|
text = "%2.0f:%02.0f",
|
||||||
|
|
||||||
offset = {
|
offset = {
|
||||||
@@ -1050,7 +937,7 @@ function config.init()
|
|||||||
|
|
||||||
size = {
|
size = {
|
||||||
width = 185,
|
width = 185,
|
||||||
height = 7
|
height = 6
|
||||||
},
|
},
|
||||||
|
|
||||||
outline = {
|
outline = {
|
||||||
@@ -1061,7 +948,120 @@ function config.init()
|
|||||||
},
|
},
|
||||||
|
|
||||||
colors = {
|
colors = {
|
||||||
foreground = 0xB9CC6666,
|
foreground = 0xB966CCC5,
|
||||||
|
background = 0x88000000,
|
||||||
|
outline = 0xC0000000
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
rage = {
|
||||||
|
visibility = false,
|
||||||
|
|
||||||
|
offset = {
|
||||||
|
x = 10,
|
||||||
|
y = 13
|
||||||
|
},
|
||||||
|
|
||||||
|
text_label = {
|
||||||
|
visibility = false,
|
||||||
|
text = "%s",
|
||||||
|
offset = {
|
||||||
|
x = -70,
|
||||||
|
y = 0
|
||||||
|
},
|
||||||
|
color = 0xFFA3F5F0,
|
||||||
|
|
||||||
|
shadow = {
|
||||||
|
visibility = true,
|
||||||
|
offset = {
|
||||||
|
x = 1,
|
||||||
|
y = 1
|
||||||
|
},
|
||||||
|
color = 0xFF000000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
value_label = {
|
||||||
|
visibility = false,
|
||||||
|
text = "%.0f/%.0f", -- current_health/max_health
|
||||||
|
offset = {
|
||||||
|
x = 45,
|
||||||
|
y = 17
|
||||||
|
},
|
||||||
|
color = 0xFFFFFFFF,
|
||||||
|
|
||||||
|
shadow = {
|
||||||
|
visibility = true,
|
||||||
|
offset = {
|
||||||
|
x = 1,
|
||||||
|
y = 1
|
||||||
|
},
|
||||||
|
color = 0xFF000000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
percentage_label = {
|
||||||
|
visibility = false,
|
||||||
|
text = "%5.1f%%",
|
||||||
|
|
||||||
|
offset = {
|
||||||
|
x = 135,
|
||||||
|
y = 17
|
||||||
|
},
|
||||||
|
color = 0xFFFFFFFF,
|
||||||
|
|
||||||
|
shadow = {
|
||||||
|
visibility = true,
|
||||||
|
offset = {
|
||||||
|
x = 1,
|
||||||
|
y = 1
|
||||||
|
},
|
||||||
|
color = 0xFF000000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
timer_label = {
|
||||||
|
visibility = false,
|
||||||
|
text = "%2.0f:%02.0f",
|
||||||
|
|
||||||
|
offset = {
|
||||||
|
x = 140,
|
||||||
|
y = 17
|
||||||
|
},
|
||||||
|
color = 0xFFFFFFFF,
|
||||||
|
|
||||||
|
shadow = {
|
||||||
|
visibility = true,
|
||||||
|
offset = {
|
||||||
|
x = 1,
|
||||||
|
y = 1
|
||||||
|
},
|
||||||
|
color = 0xFF000000
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
bar = {
|
||||||
|
visibility = true,
|
||||||
|
offset = {
|
||||||
|
x = 0,
|
||||||
|
y = 17
|
||||||
|
},
|
||||||
|
|
||||||
|
size = {
|
||||||
|
width = 185,
|
||||||
|
height = 6
|
||||||
|
},
|
||||||
|
|
||||||
|
outline = {
|
||||||
|
visibility = true,
|
||||||
|
thickness = 1,
|
||||||
|
offset = 0,
|
||||||
|
style = "Center"
|
||||||
|
},
|
||||||
|
|
||||||
|
colors = {
|
||||||
|
foreground = 0xB966CCC5,
|
||||||
background = 0x88000000,
|
background = 0x88000000,
|
||||||
outline = 0xC0000000
|
outline = 0xC0000000
|
||||||
}
|
}
|
||||||
@@ -1073,7 +1073,7 @@ function config.init()
|
|||||||
|
|
||||||
offset = {
|
offset = {
|
||||||
x = 10,
|
x = 10,
|
||||||
y = 111
|
y = 45
|
||||||
},
|
},
|
||||||
|
|
||||||
spacing = {
|
spacing = {
|
||||||
|
|||||||
@@ -694,6 +694,8 @@ function part_names.init()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[1398] = -- Seething Bazelgeuse
|
[1398] = -- Seething Bazelgeuse
|
||||||
{
|
{
|
||||||
language.current_language.parts.head,
|
language.current_language.parts.head,
|
||||||
@@ -734,6 +736,47 @@ function part_names.init()
|
|||||||
language.current_language.parts.left_hind_leg,
|
language.current_language.parts.left_hind_leg,
|
||||||
language.current_language.parts.right_cutwing,
|
language.current_language.parts.right_cutwing,
|
||||||
language.current_language.parts.right_hind_leg
|
language.current_language.parts.right_hind_leg
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--SUNBREAK TITLE UPDATE 2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[392] = -- Flaming Espinas
|
||||||
|
{
|
||||||
|
language.current_language.parts.head,
|
||||||
|
language.current_language.parts.torso,
|
||||||
|
language.current_language.parts.wings,
|
||||||
|
language.current_language.parts.legs,
|
||||||
|
language.current_language.parts.tail
|
||||||
|
},
|
||||||
|
[594] = -- Violet Mizutsune
|
||||||
|
{
|
||||||
|
language.current_language.parts.head,
|
||||||
|
language.current_language.parts.left_foreleg,
|
||||||
|
language.current_language.parts.right_foreleg,
|
||||||
|
language.current_language.parts.left_hind_leg,
|
||||||
|
language.current_language.parts.right_hind_leg,
|
||||||
|
language.current_language.parts.body,
|
||||||
|
language.current_language.parts.tail,
|
||||||
|
language.current_language.parts.dorsal_fin
|
||||||
|
},
|
||||||
|
[2073] = -- Risen Chameleos
|
||||||
|
{
|
||||||
|
language.current_language.parts.head,
|
||||||
|
language.current_language.parts.abdomen,
|
||||||
|
language.current_language.parts.left_foreleg,
|
||||||
|
language.current_language.parts.right_foreleg,
|
||||||
|
language.current_language.parts.left_hind_leg,
|
||||||
|
language.current_language.parts.right_hind_leg,
|
||||||
|
language.current_language.parts.tail,
|
||||||
|
language.current_language.parts.wings
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -328,4 +328,4 @@
|
|||||||
"wingclaws": "翼爪",
|
"wingclaws": "翼爪",
|
||||||
"wings": "翅膀"
|
"wings": "翅膀"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user