Results: 3Comments by: TheInfiniti352
File: Tamriel Ambulance07/17/22
Hiya, You seem to have an issue...
Posted By: TheInfiniti352
Hiya, You seem to have an issue with the fontSize / selectedFontSize saved variables, they are not being initialised on first load of the addon (error below). Changing the font size in the addon settings generates a further error, but adds 'selectedFontSize' to the SV file. However, on load, the addon is looking for 'fontSize'....
File: Tamriel Ambulance06/23/21
If your addons need dependencies pl...
Posted By: TheInfiniti352
If your addons need dependencies please name them at the addon description so that players are able to see and install them (even via Minion) without having to start the game and use the ingame addon manager. Thank you. Forgot to do so ! I'm changing it
File: Action Duration Reminder11/08/20
Fixing a bug
Posted By: TheInfiniti352
Fixed some issue in the addon but haven't access to the git repo so I'm it posting here File src\Models.lua lines 100 - 101 if n and n > 0 then action.descriptionDuration = tonumber(numStr)*1000 --#number end replaced by if n and n > 0 then local tmpVal = tonumber(numStr) if tmpVal==nil then...