yes m8.I just checked my local file and this is correct. Maybe i have not uploaded it.
Have you tried with latest version from website?
Still the same.Can you re-download again and try?
You don't need the plugins any moreSorry but i don't see where download :
Costum variables: 11.12.24
Redadeg.lmuDataPlugin : 19.06.25
LMU_SharedMemoryMapPlugin64 : 19.06.2025
Can you help me
Thanks
Thanks a lot for these led brow tuning tips. I used these as my base for 2 x separate led-brows. There was small issue of last led not flashing up because of rounding issues, and that is also fixed. Works like a charmcool yeah I managed, now I need to find a way to make it mirrored on the right leds so they go from right to left
edit "managed!"View attachment 13888

I dont know why you need such a big formula, just use the game output and put it on a gradientThanks a lot for these led brow tuning tips. I used these as my base for 2 x separate led-brows. There was small issue of last led not flashing up because of rounding issues, and that is also fixed. Works like a charm
Right brow:
var v = Number($prop('GameRawData.PlayerNativeTelemetry.mLiftAndCoastProgress') || 0);
var max = 254;
if (isNaN(v)) v = 0;
v = Math.max(0, Math.min(max, v));
// Switched Math.floor -> Math.round
var litCount = Math.round((v / max) * 8);
var leds = [];
for (var i = 0; i < 8; i++) {
leds.push(i < litCount ? '#BF00FF' : '#00000000');
}
return leds;
left brow:
var v = Number($prop('GameRawData.PlayerNativeTelemetry.mLiftAndCoastProgress') || 0);
var max = 254;
if (isNaN(v)) v = 0;
v = Math.max(0, Math.min(max, v));
// Switched Math.floor -> Math.round
var litCount = Math.round((v / max) * 8);
var leds = [];
for (var i = 0; i < 8; i++) {
leds.push(i >= 8 - litCount ? '#BF00FF' : '#00000000');
}
return leds;
View attachment 14948

Thanks a lot man, much apreciated.@Redadeg I noticed you don't have the Adess AD25 yet.
So, I made it for you. Feel free to put on your website.
It's a duplication of the Ginetta (as the data is the same). Just the layout has been changed around to match the new one.
I've also added in a Brake Balance output on the dash too.
https://drive.google.com/file/d/1CIyxwM8jjlgYB-OiGHBgMhRj3Tlv0vfo/view?usp=sharing
I haven't managed to test it yet in anger but I use the Ginetta dash all the time and it's fine so should be ok.