mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
15 lines
285 B
Lua
15 lines
285 B
Lua
![]() |
--[[
|
||
|
|
||
|
LinkshellChangeCommand Script
|
||
|
|
||
|
--]]
|
||
|
|
||
|
function onEventStarted(player, actor, triggerName, linkshellName, arg1, arg2)
|
||
|
|
||
|
if (linkshellName == nil) then
|
||
|
linkshellName = "";
|
||
|
end
|
||
|
GetWorldManager():RequestWorldLinkshellChangeActive(player, linkshellName);
|
||
|
player:EndEvent();
|
||
|
|
||
|
end
|