Skip to content
Snippets Groups Projects
Commit aeece6cc authored by dg's avatar dg
Browse files

Storming the City quest can not be continued when it is already finished by...

Storming the City quest can not be continued when it is already finished by going from angolwen to zigur


git-svn-id: http://svn.net-core.org/repos/t-engine4@4085 51575b47-30f0-44d4-a5cc-537603b46e54
parent a94a29e1
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ newChat{ id="welcome",
text = [[#LIGHT_GREEN#*A tall woman stands before you. Her fair skin radiates incredible power through her white robe.*#WHITE#
I am Linaniil of the Kar'Krul. Welcome to our city, @playerdescriptor.subclass@. What may I do for thee?]],
answers = {
{"I require all the help I can get, not for my sake but for the town of Derth, to the northeast of here.", jump="save-derth", cond=function(npc, player) local q = player:hasQuest("lightning-overload") return q and q:isCompleted("saved-derth") and not q:isCompleted("tempest-located") end},
{"I require all the help I can get, not for my sake but for the town of Derth, to the northeast of here.", jump="save-derth", cond=function(npc, player) local q = player:hasQuest("lightning-overload") return q and q:isCompleted("saved-derth") and not q:isCompleted("tempest-located") and not q:isStatus(q.DONE) end},
{"I am ready! Send me to Urkis!", jump="teleport-urkis", cond=function(npc, player) local q = player:hasQuest("lightning-overload") return q and not q:isEnded("tempest-located") and q:isCompleted("tempest-located") end},
{"Nothing for now. Sorry to have taken your time. Farewell, my lady."},
}
......
......@@ -35,7 +35,7 @@ newChat{ id="welcome",
text = [[#LIGHT_GREEN#*A Halfling woman stands before you, clad in dark steel plate.*#WHITE#
I am Protector Myssil. Welcome to Zigur.]],
answers = {
{"I require all the help I can get, not for my sake but for the town of Derth, to the northeast of here.", jump="save-derth", cond=function(npc, player) local q = player:hasQuest("lightning-overload") return q and q:isCompleted("saved-derth") and not q:isCompleted("tempest-entrance") end},
{"I require all the help I can get, not for my sake but for the town of Derth, to the northeast of here.", jump="save-derth", cond=function(npc, player) local q = player:hasQuest("lightning-overload") return q and q:isCompleted("saved-derth") and not q:isCompleted("tempest-entrance") and not q:isStatus(q.DONE) end},
{"Nothing for now. Sorry to have taken your time. Farewell, Protector."},
}
}
......
game/modules/tome/data/gfx/talents/cease_to_exist.png

2.46 KiB

game/modules/tome/data/gfx/talents/fade_from_time.png

3.96 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment