diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-25 01:53:51 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-25 02:08:26 -0300 |
commit | d70370b9544e1ea7144a989612beb3ec40c4526d (patch) | |
tree | 87453b230d50a9d5c8787e93326c3c4d8aacfa4c /npc/005-1 | |
parent | c7a3f3a677bdc506c9bafcb7a0fc754867084836 (diff) | |
download | serverdata-d70370b9544e1ea7144a989612beb3ec40c4526d.tar.gz serverdata-d70370b9544e1ea7144a989612beb3ec40c4526d.tar.bz2 serverdata-d70370b9544e1ea7144a989612beb3ec40c4526d.tar.xz serverdata-d70370b9544e1ea7144a989612beb3ec40c4526d.zip |
Maintenance quest-related
Diffstat (limited to 'npc/005-1')
-rw-r--r-- | npc/005-1/vincent.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/005-1/vincent.txt b/npc/005-1/vincent.txt index cf1b83251..013d553bc 100644 --- a/npc/005-1/vincent.txt +++ b/npc/005-1/vincent.txt @@ -2,7 +2,7 @@ // Authors: // Saulc // Variables: -// CandorQuests_Vincent - quest var +// CandorQuest_Vincent - quest var 005-1,92,95,0 script Vincent NPC_PLAYER,{ @@ -11,7 +11,7 @@ .LegsID = BugLeg; .LegsCount = 12; - .@q = getq(CandorQuests_Vincent); + .@q = getq(CandorQuest_Vincent); if (.@q == 1) goto L_CheckItems; if (.@q == 2) goto L_QuestDone; @@ -23,7 +23,7 @@ l("Sorry, I'm doing other things at the moment."))) { case 1: - setq CandorQuests_Vincent, 1; + setq CandorQuest_Vincent, 1; speech S_FIRST_BLANK_LINE, l("Thank you. I'll wait here."); close; @@ -49,7 +49,7 @@ L_CheckItems: delitem .LegsID, .LegsCount; Zeny = Zeny + 1000; message strcharinfo(0), l("You receive @@ GP!", 1000); - setq CandorQuests_Vincent, 2; + setq CandorQuest_Vincent, 2; close; L_QuestDone: |