diff options
author | Emistry <equinox1991@gmail.com> | 2015-01-14 16:38:57 +0800 |
---|---|---|
committer | Emistry <equinox1991@gmail.com> | 2015-01-14 16:38:57 +0800 |
commit | b430fa253bca3930603bf16076a74a83e6f48b19 (patch) | |
tree | 7bf1d5f93c6982a80171be397431b588f3b0ea38 /npc/re | |
parent | 74f2ce544bcc8ad814e3512b67f508fe5df40c23 (diff) | |
download | hercules-b430fa253bca3930603bf16076a74a83e6f48b19.tar.gz hercules-b430fa253bca3930603bf16076a74a83e6f48b19.tar.bz2 hercules-b430fa253bca3930603bf16076a74a83e6f48b19.tar.xz hercules-b430fa253bca3930603bf16076a74a83e6f48b19.zip |
Incorrect quest progress checking.
I think the quest progress check is incorrect.
should be these 4 quests I believe.
```
7423,0,0,0,0,0,0,0,"A rumor about the King 1"
7424,0,0,0,0,0,0,0,"A rumor about the King 2"
7425,0,0,0,0,0,0,0,"A rumor about the King 3"
7426,0,0,0,0,0,0,0,"A rumor about the King 4"
```
Diffstat (limited to 'npc/re')
-rw-r--r-- | npc/re/quests/quests_eclage.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/re/quests/quests_eclage.txt b/npc/re/quests/quests_eclage.txt index f652274fc..cb57f1681 100644 --- a/npc/re/quests/quests_eclage.txt +++ b/npc/re/quests/quests_eclage.txt @@ -14718,7 +14718,7 @@ ecl_in01,32,52,5 script Traveler Fome#tl01 4_F_DOGTRAVELER,3,3,{ mes "The fact that you made it here actually seems just short of a miracle..."; close; } - .@totaltemp = questprogress(7424) + questprogress(7424) + questprogress(7425) + questprogress(7426); + .@totaltemp = questprogress(7423) + questprogress(7424) + questprogress(7425) + questprogress(7426); .@total = questprogress(7411) + questprogress(7412) + questprogress(7413); if (ep14_2_mylord < 2 || (ep14_2_mylord == 2 && questprogress(7411) != 1)) { mes "[Fome]"; |