mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-22 12:47:46 +00:00
19 lines
360 B
Lua
19 lines
360 B
Lua
require ("global")
|
|
|
|
--[[
|
|
|
|
BgKeepout Script
|
|
|
|
Used to send a msg to the player that they cannot proceed passed this point. Invisible walls are
|
|
linked to this object.
|
|
|
|
]]
|
|
|
|
function init(npc)
|
|
return false, false, 0, 0;
|
|
end
|
|
|
|
function onEventStarted(player, npc, triggerName)
|
|
player:SendGameMessage(player, GetWorldMaster(), 60001, 0x20);
|
|
player:EndEvent();
|
|
end
|