Lua Events/OnScoreboardUpdate

From PZwiki
< Lua Events
Revision as of 21:24, 23 June 2023 by Faalagorn (talk | contribs) (Faalagorn moved page Lua Events/OnScoreboardUpdate to Lua Events/OnScoreboardUpdate: Remove Modding: prefix)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



Event

OnScoreboardUpdate

Description

Triggered when multiplayer scoreboard is updated.

Parameters

  • ArrayList The list of player names which are being updated on the score board.
  • ArrayList The list of display names for the players which are being updated on the score board.
  • ArrayList The list of Steam identifiers of the players which are being updated on the score board.

Examples

local function OnScoreboardUpdate(playerNames, displayNames, steamIds)
	-- Your code here
end

Events.OnScoreboardUpdate.Add(OnScoreboardUpdate)

See also

No related event.