mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
14 lines
No EOL
321 B
Lua
14 lines
No EOL
321 B
Lua
--[[
|
|
|
|
LinkshellInviteCommand Script
|
|
|
|
Handles what happens when you invite a player to a linkshell
|
|
|
|
--]]
|
|
|
|
function onEventStarted(player, actor, eventType, eventName, linkshellName, arg1, arg2, arg3, actorId)
|
|
|
|
GetWorldManager():RequestWorldLinkshellInviteMember(player, linkshellName, actorId);
|
|
player:EndEvent();
|
|
|
|
end |