diff options
author | Hal9OOO (Francesco Miglietta) <miglietta.francesco@gmail.com> | 2012-10-09 19:37:25 +0200 |
---|---|---|
committer | Hal9OOO (Francesco Miglietta) <miglietta.francesco@gmail.com> | 2012-10-09 19:37:25 +0200 |
commit | 8fd0d268af131bfe9b370f6172726405115a82f5 (patch) | |
tree | 36edcfe1c7dd977319be42f81aab6d2627f49d24 | |
parent | 7141defde6a8f156e26f914510f6b8a313f66730 (diff) | |
download | serverdata-8fd0d268af131bfe9b370f6172726405115a82f5.tar.gz serverdata-8fd0d268af131bfe9b370f6172726405115a82f5.tar.bz2 serverdata-8fd0d268af131bfe9b370f6172726405115a82f5.tar.xz serverdata-8fd0d268af131bfe9b370f6172726405115a82f5.zip |
Chef Gado quest. Gado dialogue updated.
-rw-r--r-- | npc/000-2-1/chefgado.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index 095efbd3..0e4ed628 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -11,6 +11,7 @@ // 2 Ingredients collected, ready to poison Julia. // 3 Julia poisoned. // 4 Quest complete. +// 5 Quest aborted. 000-2-1.gat,17,28,0,1 script Chef Gado 318;2,{ @@ -19,6 +20,7 @@ if (@q == 2) goto l_PoisonAccepted; if (@q == 3) goto l_PoisonJulia; if (@q == 4) goto l_QuestComplete; + if (@q == 5) goto l_QuestAborted; mesn; mesq l("So it seems I have another stomach to fill. Those bastards have no respect for who feeds them every damn day!"); @@ -99,6 +101,7 @@ l_Collected: mesq l("Water, salt, spicy herbs and meat stuffed with my special surprise!"); next; mesq l("Done, take it! Now here it is the plan. Go talk with her and offer our beautiful lady a bite of her arrogancy!"); + getitem "PoisonedDish", 1; next; close; @@ -123,4 +126,10 @@ l_QuestComplete; close; +l_QuestAborted; + mesn; + mesq l("You dirty liar. I will add you on the traitors' list."); + + close; + } |