mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 14:34:32 +02:00
"Seeing the Seers" quest etc3g0 scripted, no reward handling currently. Requires actor "Nellaure" (http://ffxiv.gamerescape.com/w/index.php?title=Nellaure) to be added in. Hangs out in back-right corner of Carpenter's Guild.
Added a quest completion check to etc5g0.lua to prevent it showing "!" on quest-givers' head when you've cleared the quest already. Fixed regression on select GM commands, !warp instant-warps within same zone again, !mypos reports to the thousandths place, !speed command works with one argument again.
This commit is contained in:
parent
4bb222a47a
commit
3145ec5663
11 changed files with 363 additions and 54 deletions
|
@ -2,7 +2,7 @@
|
|||
TALKED_PFARAHR = 0;
|
||||
|
||||
function canAcceptQuest(player)
|
||||
return (player:HasQuest("etc5g0") == false and player:GetHighestLevel() >= 1);
|
||||
return (player:HasQuest("etc5g0") == false and player:IsQuestCompleted("Etc5g0") == false and player:GetHighestLevel() >= 1);
|
||||
end
|
||||
|
||||
function isObjectivesComplete(player, quest)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue