138
edits
(add base XP/s and GP/s to Fishing table) |
(add header for new columns in Fishing table) |
||
Line 266: | Line 266: | ||
result = result..'\r\n!Fish\r\n!Name\r\n!'..Icons.Icon({'Fishing', type='skill', notext=true})..' Level\r\n!Catch Time' | result = result..'\r\n!Fish\r\n!Name\r\n!'..Icons.Icon({'Fishing', type='skill', notext=true})..' Level\r\n!Catch Time' | ||
result = result..'\r\n!Experience\r\n!Fish Price\r\n!'..Icons.Icon({'Cooking', type='skill', notext=true})..' Level' | result = result..'\r\n!Experience\r\n!Fish Price\r\n!'..Icons.Icon({'Cooking', type='skill', notext=true})..' Level' | ||
result = result..'\r\n!XP/s!GP/s' | |||
for i, fish in Shared.skpairs(data) do | for i, fish in Shared.skpairs(data) do | ||
Line 280: | Line 281: | ||
local XPs = fish.fishingXP / (timeSortVal / 1000) | local XPs = fish.fishingXP / (timeSortVal / 1000) | ||
local GPs = fish.sellsFor / (timeSortVal / 1000) | local GPs = fish.sellsFor / (timeSortVal / 1000) | ||
result = result..' | result = result..'\r\n| style="text-align:right"|'..Shared.round(XPs, 2, 2) | ||
result = result..' | result = result..'\r\n| style="text-align:right" data-sort-value="'..GPs..'"|'..Icons.GP(Shared.round(GPs, 2, 2)) | ||
local cookStr = "N/A" | local cookStr = "N/A" |
edits