mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
14 lines
312 B
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
|