diff options
Diffstat (limited to 'npc/jobs/1-1e')
-rw-r--r-- | npc/jobs/1-1e/gunslinger.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/jobs/1-1e/gunslinger.txt b/npc/jobs/1-1e/gunslinger.txt index 202759bb0..3282699e5 100644 --- a/npc/jobs/1-1e/gunslinger.txt +++ b/npc/jobs/1-1e/gunslinger.txt @@ -257,7 +257,7 @@ if (gs_quest == 1) { end;
}
} else if (gs_quest == 3) || (gs_quest == 4) {
- if (countitem(519) > 1) && (gs_quest == 4) {
+ if (countitem(519) >= 1) && (gs_quest == 4) {
mes @npcname$;
mes "THAT'S IT!! I was missing the Milk! Oh yes, thanks so much, will you give it to me?";
switch(select("Yes, take it please:Sorry but I need it")) {
@@ -280,7 +280,7 @@ if (gs_quest == 1) { }
} else
mes @npcname$;
- mes "*sigh* All I need now is wait. Thanks for your help... but I believe there's something missing.."
+ mes "*sigh* All I need now is wait. Thanks for your help... but I believe there's something missing..";
close2;
set @npcname$,"";
set gs_quest,4;
|