mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 19:57:46 +00:00
15 lines
No EOL
285 B
Lua
15 lines
No EOL
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 |