diff options
author | Haru <haru@dotalux.com> | 2014-10-26 05:00:08 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-02 01:36:51 +0100 |
commit | 54604096ac53398778a5481613061216fe47e5bc (patch) | |
tree | 4d9982857e3bd9ee7eab839cc743cb6f3e9dc7f3 /npc/quests/newgears/2008_headgears.txt | |
parent | 46fbbaabefa29df1378ae68b7f063dbc64846042 (diff) | |
download | hercules-54604096ac53398778a5481613061216fe47e5bc.tar.gz hercules-54604096ac53398778a5481613061216fe47e5bc.tar.bz2 hercules-54604096ac53398778a5481613061216fe47e5bc.tar.xz hercules-54604096ac53398778a5481613061216fe47e5bc.zip |
Replaced 'set' with direct assignment where applicable (quests subfolders)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/newgears/2008_headgears.txt')
-rw-r--r-- | npc/quests/newgears/2008_headgears.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/newgears/2008_headgears.txt b/npc/quests/newgears/2008_headgears.txt index e215b982a..b5a91eb5f 100644 --- a/npc/quests/newgears/2008_headgears.txt +++ b/npc/quests/newgears/2008_headgears.txt @@ -96,7 +96,7 @@ gef_fild05,80,149,3 script Myu#08_hat 4_F_YUNYANG,{ mes "If you do, it's all over for you."; mes "So you better be careful.. "; mes "Meow Meow Meow.."; - set hatcat2008,1; + hatcat2008 = 1; setquest 7054; setquest 7055; close; @@ -116,7 +116,7 @@ gef_fild05,80,149,3 script Myu#08_hat 4_F_YUNYANG,{ mes "Our business is over!!!"; mes " "; mes "(Meow..)"; - set hatcat2008,0; + hatcat2008 = 0; erasequest 7054; erasequest 7055; close; @@ -136,7 +136,7 @@ gef_fild05,80,149,3 script Myu#08_hat 4_F_YUNYANG,{ mes "What more did you expect?"; mes "That Pow is really a valuable thing!"; mes "Now, just take it and leave. Wild Roses feel uncomfortable with an adventurer around them."; - set hatcat2008,2; + hatcat2008 = 2; getitem 5446,1; erasequest 7054; erasequest 7055; @@ -185,7 +185,7 @@ gef_fild05,80,149,3 script Myu#08_hat 4_F_YUNYANG,{ mes "You know the drill right?"; mes "Never ever touch the Wild Roses, Only hunt down the Kobold Archers."; mes "Give them 1,000 times despair!"; - set hatcat2008,1; + hatcat2008 = 1; setquest 7054; setquest 7055; close; |