diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-06-27 15:17:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-06-27 15:17:25 -0300 |
commit | 67389fe9b71f90999b1b22d80c08a9c0928c3959 (patch) | |
tree | 7eedc7e8c98a873484a932817502bf5335510fc3 /npc/006-1/tree.txt | |
parent | a43a3c01d746d07b2144fcc1b4ceb7ce2860bc81 (diff) | |
download | serverdata-67389fe9b71f90999b1b22d80c08a9c0928c3959.tar.gz serverdata-67389fe9b71f90999b1b22d80c08a9c0928c3959.tar.bz2 serverdata-67389fe9b71f90999b1b22d80c08a9c0928c3959.tar.xz serverdata-67389fe9b71f90999b1b22d80c08a9c0928c3959.zip |
Kaflosh is now able to continue druid tree quest.
"Hug" is still broken
Diffstat (limited to 'npc/006-1/tree.txt')
-rw-r--r-- | npc/006-1/tree.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/006-1/tree.txt b/npc/006-1/tree.txt index 6c961691..df6dd2ef 100644 --- a/npc/006-1/tree.txt +++ b/npc/006-1/tree.txt @@ -6,13 +6,13 @@ function script QuestTreeTrigger { @Q_status_lower = @Q_status & 3; @Q_status = (@Q_status & 12) >> 2; - if (@Q_status & @flag) goto L_close; // already did that + if (@Q_status & getarg(0, @flag)) goto L_close; // already did that - if (@flag == 2) goto L_hug; + if (getarg(0, @flag) == 2) goto L_hug; goto L_Cont; L_Cont: - @Q_status = @Q_status | @flag; + @Q_status = @Q_status | getarg(0, @flag); callsub S_Update_Var; if (@Q_status != 3) goto L_close; |