project-meteor-server/data/scripts/commands/LinkshellInviteCommand.lua
2017-01-09 00:17:46 -05:00

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