ArTiqR Posted April 9, 2015 Posted April 9, 2015 Really disappointing as this mod looks awesome while matching my preferred color scheme (Blue/Red) Also, would it be possible make this mod compatible with XVM? Cheers :D Quote
Grandorf Posted April 9, 2015 Posted April 9, 2015 Hi In playersPanel.xc you can try making prefered panel wider ], "width": 56 These are the lines needed for HP in ears and can be combined: "extraFieldsLeft": [ { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "100", "bgColor": 0, "alpha": "{{alive?35|0}}" }, { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "{{hp-ratio:100}}", "bgColor": ${"def.c1"}, "alpha": "{{alive?75|0}}" }, { "w": 3, "y": 2, "valign": "center", "h": 21, "bgColor": ${"def.c1"}, "alpha": "{{alive?35|0}}" }, {} ], "extraFieldsRight": [ { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "100", "bgColor": 0, "alpha": "{{alive?35|0}}" }, { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "{{hp-ratio:100}}", "bgColor": ${"def.c2"}, "alpha": "{{alive?75|0}}" }, { "w": 3, "y": 2, "valign": "center", "h": 21, "bgColor": ${"def.c2"}, "alpha": "{{alive?35|0}}" }, Thats the graphics of the HP-bar ("h":21 is the thickness and "bgColor": ${"def.c2"} is the color of the bar, defined at the very top. Edit: length of bar (ofcourse) "w": "100" Quote
Administrator Aslain Posted April 9, 2015 Administrator Posted April 9, 2015 Will try to fix it... Quote
Administrator Aslain Posted April 9, 2015 Administrator Posted April 9, 2015 This should be fine: "extraFieldsLeft": [ { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "{{hp-max:100}}", "bgColor": 0, "alpha": "{{alive?35|0}}" }, { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "{{hp:100}}", "bgColor": ${"def.c1"}, "alpha": "{{alive?75|0}}" }, { "w": 3, "y": 2, "valign": "center", "h": 21, "bgColor": ${"def.c1"}, "alpha": "{{alive?35|0}}" }, {} ], "extraFieldsRight": [ { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "{{hp-max:100}}", "bgColor": 0, "alpha": "{{alive?35|0}}" }, { "x": 26, "y": 2, "valign": "center", "h": 21, "w": "{{hp:100}}", "bgColor": ${"def.c2"}, "alpha": "{{alive?75|0}}" }, { "w": 3, "y": 2, "valign": "center", "h": 21, "bgColor": ${"def.c2"}, "alpha": "{{alive?35|0}}" }, { "x": 0, "y": 4, "align": "center", "valign": "top", "bindToIcon": "true", "format": "{{spotted}} ", "alpha": "{{alive?100|0}}", "shadow": {} }, {} ], "width": 56 Funny I always wanted to fix it, but always forgot about it :) Will apply it in next modpack release. Quote
ArTiqR Posted April 9, 2015 Author Posted April 9, 2015 Super awesome Aslain! Thank you very much, Cheers :D Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.