Lua Events/AcceptedFactionInvite

From PZwiki
< Lua Events
Revision as of 22:35, 13 June 2023 by Faalagorn (talk | contribs) (Faalagorn moved page Lua Events/AcceptedFactionInvite to Lua Events/AcceptedFactionInvite: Avoid Modding: prefix)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



Event

AcceptedFactionInvite

Description

Triggered when a faction invite has been accepted.

Parameters

  • String The name of the faction the player accepted to join.
  • String The name of the player who accepted the invitation.

Examples

local function AcceptedFactionInvite(factionName, playerName)
	-- Your code here
end

Events.AcceptedFactionInvite.Add(AcceptedFactionInvite)

See also