Well I am starting to setup my boxing using more of ImGui interfaces after watching your vid (Lazarus).
I am running into trouble with PlayerTarg, it is crashing right off the start.
View attachment 63812
I checked the settingss that were created (not having run this before) and confirmed that there was a value for
iconSize.
[CODE lang="lua" title="Settings.lua" highlight="55"]return {
['PlayerTarg'] = {
['Scale'] = 1,
['LoadTheme'] = 'Default',
['locked'] = false,
['SplitTarget'] = false,
['showXtar'] = false,
['ColorHPMax'] = {
[1] = 0.992,
[2] = 0.138,
[3] = 0.138,
[4] = 1,
},
['ColorHPMin'] = {
[1] = 0.551,
[2] = 0.207,
[3] = 0.962,
[4] = 1,
},
['ColorMPMax'] = {
[1] = 0.231,
[2] = 0.707,
[3] = 0.938,
[4] = 1,
},
['ColorMPMin'] = {
[1] = 0.6,
[2] = 0.231,
[3] = 0.938,
[4] = 1,
},
['ColorBreathMin'] = {
[1] = 0.6,
[2] = 0.231,
[3] = 0.938,
[4] = 1,
},
['ColorBreathMax'] = {
[1] = 0.231,
[2] = 0.707,
[3] = 0.938,
[4] = 1,
},
['BreathLocked'] = false,
['ShowTitleBreath'] = false,
['EnableBreathBar'] = false,
['DynamicHP'] = false,
['DynamicMP'] = false,
['FlashBorder'] = true,
['MouseOver'] = false,
['WinTransparency'] = 1,
['ProgressSize'] = 10,
['pulseSpeed'] = 5,
['combatPulseSpeed'] = 10,
['iconSize'] = 26,
['ProgressSizeTarget'] = 30,
['doPulse'] = true,
},
}[/CODE]
I've confirmed that all player windows are open, stopped any running lua/mac, and tested with default UI.
After that, I'm at a loss.
I could use your help as I figure it's something with my setup (or you would have heard before now).
Thank you in advance and great VID on the Lazarus server. It's my fav emu.
- M