project-meteor-server/Data/scripts/commands/LinkshellInviteCommand.lua

14 lines
312 B
Lua

--[[
LinkshellInviteCommand Script
Handles what happens when you invite a player to a linkshell
--]]
function onEventStarted(player, actor, triggerName, linkshellName, arg1, arg2, arg3, actorId)
GetWorldManager():RequestWorldLinkshellInviteMember(player, linkshellName, actorId);
player:EndEvent();
end