LeaderboardAddItemBJ
- Parameters
-
whichPlayer player
lb leaderboard
label string
value integer
- comment
- patch
-
1.00
- Source
- Blizzard.j (suggest an edit or discuss on Github)
- return type
-
nothing
- Source code
-
function LeaderboardAddItemBJ takes player whichPlayer, leaderboard lb, string label, integer value returns nothing if (LeaderboardHasPlayerItem(lb, whichPlayer)) then call LeaderboardRemovePlayerItem(lb, whichPlayer) endif call LeaderboardAddItem(lb, label, value, whichPlayer) call LeaderboardResizeBJ(lb) //call LeaderboardSetSizeByItemCount(lb, LeaderboardGetItemCount(lb)) endfunction