Lua Events/OnReceiveGlobalModData

From PZwiki



Event

OnReceiveGlobalModData

Description

Triggered when the game client is receiving GlobalModData from the server.

Parameters

  • String The key for the ModData that has been received.
  • KahluaTable The ModData that has been received.

Examples

local function OnReceiveGlobalModData(key, modData)
	-- Your code here
end

Events.OnReceiveGlobalModData.Add(OnReceiveGlobalModData)

See also