41 lines
746 B
Lua
41 lines
746 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param sortType team
|
|
---@param class
|
|
---@param cp
|
|
---@param damage
|
|
---@param deaths
|
|
---@param healing
|
|
---@param hk
|
|
---@param kills
|
|
---@param name
|
|
---@param stat1
|
|
---@param stat2
|
|
---@param stat3
|
|
---@param stat4
|
|
---@param stat5
|
|
---@param stat6
|
|
---@param stat7
|
|
---@param team
|
|
---Sorts the battleground scoreboard. Battleground-specific statistics include flags captured in Warsong Gulch, towers assaulted in Alterac Valley, etc. For the name and icon associated with each statistic, see GetBattlefieldStatInfo().
|
|
function SortBattlefieldScoreData(
|
|
sortType,
|
|
class,
|
|
cp,
|
|
damage,
|
|
deaths,
|
|
healing,
|
|
hk,
|
|
kills,
|
|
name,
|
|
stat1,
|
|
stat2,
|
|
stat3,
|
|
stat4,
|
|
stat5,
|
|
stat6,
|
|
stat7,
|
|
team
|
|
)
|
|
end
|