diff options
author | Haru <haru@dotalux.com> | 2014-10-26 03:19:01 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-02 01:36:51 +0100 |
commit | d853cc9c0ccdafb8e23ddf6b3f18e7859af0a710 (patch) | |
tree | 6f58d1d5202d286dd64c9fc3083cae1d4f2e240a /npc/re/quests/eden/56-70.txt | |
parent | eb5a3ece8568bae80d2d6912cd172f4cce029e68 (diff) | |
download | hercules-d853cc9c0ccdafb8e23ddf6b3f18e7859af0a710.tar.gz hercules-d853cc9c0ccdafb8e23ddf6b3f18e7859af0a710.tar.bz2 hercules-d853cc9c0ccdafb8e23ddf6b3f18e7859af0a710.tar.xz hercules-d853cc9c0ccdafb8e23ddf6b3f18e7859af0a710.zip |
Replaced 'set' with direct assignment where applicable (re/quests folder)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/re/quests/eden/56-70.txt')
-rw-r--r-- | npc/re/quests/eden/56-70.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/re/quests/eden/56-70.txt b/npc/re/quests/eden/56-70.txt index c014da7d1..0178a56ce 100644 --- a/npc/re/quests/eden/56-70.txt +++ b/npc/re/quests/eden/56-70.txt @@ -70,9 +70,9 @@ L_Quest: } if (getargcount() > 5) { if (countitem(getarg(5)) < getarg(6)) - set .@items,1; //incomplete + .@items = 1; //incomplete else - set .@items,2; //complete + .@items = 2; //complete } if (questprogress(getarg(0)) != 2 && (countitem(getarg(3)) < getarg(4) || .@items == 1)) { mes "You have an on-going mission. Would you like to check the details?"; @@ -115,9 +115,9 @@ L_HuntingQuest: } if (getargcount() > 3) { if (countitem(getarg(3)) < getarg(4)) - set .@items,1; //incomplete + .@items = 1; //incomplete else - set .@items,2; //complete + .@items = 2; //complete } if (questprogress(getarg(0),HUNTING) != 2 || .@items == 1) { mes "You have an on-going mission. Would you like to check the details?"; |