mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 12:17:46 +00:00

- DftFst - Every uniqueId script covered from the previous system. Still a lot of functions to still map and actors to pose & position for them. - AfterQuestWarpDirector - Added Man0g1 as a check. - Nuked PopulaceStandard uId scripts for Forest region since unneeded now.
18 lines
No EOL
400 B
Lua
18 lines
No EOL
400 B
Lua
require("global")
|
|
|
|
function init()
|
|
return "/Director/AfterQuestWarpDirector";
|
|
end
|
|
|
|
function onEventStarted(player, director, eventType, eventName)
|
|
if (player:HasQuest(110002) == true) then
|
|
quest = player:GetQuest("Man0l1");
|
|
quest:OnNotice(player);
|
|
elseif (player:HasQuest(110006) == true) then
|
|
quest = player:GetQuest("Man0g1");
|
|
quest:OnNotice(player);
|
|
end
|
|
end
|
|
|
|
function main()
|
|
end |