Added scripts needed.

This commit is contained in:
Filip Maj 2017-01-09 00:17:46 -05:00
parent 771b5b6d81
commit bc72147622
5 changed files with 108 additions and 0 deletions

View file

@ -0,0 +1,14 @@
--[[
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