Results: 4Comments by: Malaron
File: Tidy Plates09-11-13
Re: Get an error when enabling health bars
Posted By: Malaron
Date: 2013-09-11 01:34:06 ID: 155 Error occured in: Global Count: 1 Message: ..\AddOns\TidyPlates\TidyPlatesCore.lua line 128: bad argument #1 to 'floor' (number expected, got string) Debug: : floor() TidyPlates\TidyPlatesCore.lua:128: TidyPlates\TidyPlatesCore.lua:103 Locals: (*temporary) = "TOPLEFT" (*tem...
File: Tidy Plates09-11-13
Get an error when enabling health bars
Posted By: Malaron
Date: 2013-09-11 01:34:06 ID: 155 Error occured in: Global Count: 1 Message: ..\AddOns\TidyPlates\TidyPlatesCore.lua line 128: bad argument #1 to 'floor' (number expected, got string) Debug: : floor() TidyPlates\TidyPlatesCore.lua:128: TidyPlates\TidyPlatesCore.lua:103 Locals: (*temporary) = "TOPLEFT" (*tem...
File: SLDataText08-16-11
Mail bug and fix
Posted By: Malaron
The mail module is set up to show the names of the last 3 people that sent you mail, however due to a typo in the code it's not currently working, in order to fix this, make this change in mail.lua change local send1, send2, send3 = GetLatestThreeSenders() to local sender1, sender2, sender3 = GetLatestThreeSenders() :-)
File: SLDataText08-10-11
RealID fix
Posted By: Malaron
In order to fix the friends list to show the correct faction and colours do this: search for _,name, _, realmName, faction, race, class, guild, area, lvl = BNGetToonInfo(toonid) and replace with _,name, _, realmName, _, faction, race, class, guild, area, lvl = BNGetToonInfo(toonid) :)