diff options
author | shennetsind <ind@henn.et> | 2014-11-03 08:15:05 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2014-11-03 08:15:05 -0200 |
commit | bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678 (patch) | |
tree | 79f9aec5171e8aed2d701bf67167f260e05f41db /npc/quests/newgears/2008_headgears.txt | |
parent | 239d480487e24294975f35ed55f210837ad1088e (diff) | |
parent | ce3f4bfbe016ea69c855146667ba9bd9e0e2e221 (diff) | |
download | hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.tar.gz hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.tar.bz2 hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.tar.xz hercules-bee4c9d36f4a27e39cc76dc5d6c5f876ed44a678.zip |
Merge branch 'master' of github.com:HerculesWS/Hercules
Signed-off-by: shennetsind <ind@henn.et>
Conflicts:
src/map/battle.c
Diffstat (limited to 'npc/quests/newgears/2008_headgears.txt')
-rw-r--r-- | npc/quests/newgears/2008_headgears.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/quests/newgears/2008_headgears.txt b/npc/quests/newgears/2008_headgears.txt index f45664f3b..b5a91eb5f 100644 --- a/npc/quests/newgears/2008_headgears.txt +++ b/npc/quests/newgears/2008_headgears.txt @@ -96,14 +96,14 @@ 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; } } } else if(hatcat2008 == 1) { - if(checkquest(7055,HUNTING) == 2) { + if (questprogress(7055,HUNTING) == 2) { mes "[Myu]"; mes "Did you think I didn't know what you have done?"; mes "Huh?"; @@ -116,11 +116,11 @@ 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; - } else if(checkquest(7054,HUNTING) == 2) { + } else if (questprogress(7054,HUNTING) == 2) { mes "[Myu]"; mes "Oh..wow unbelievable!"; mes "Now, those Kobolds should have learned a lesson, haven't they?"; @@ -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; |