diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-31 13:52:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-31 13:52:04 -0300 |
commit | cb84236e5fb703686bea554b8c40261116ff0b15 (patch) | |
tree | c3fa04ea0a0d783a8861f5d46f232dbcf867b755 | |
parent | 4b7a44b44fbfa01c53da99c9c584111413dab744 (diff) | |
download | serverdata-cb84236e5fb703686bea554b8c40261116ff0b15.tar.gz serverdata-cb84236e5fb703686bea554b8c40261116ff0b15.tar.bz2 serverdata-cb84236e5fb703686bea554b8c40261116ff0b15.tar.xz serverdata-cb84236e5fb703686bea554b8c40261116ff0b15.zip |
003-1 sailors upgrade
-rw-r--r-- | npc/003-1/sailors.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/003-1/sailors.txt b/npc/003-1/sailors.txt index a22ca890d..d2c63f6f7 100644 --- a/npc/003-1/sailors.txt +++ b/npc/003-1/sailors.txt @@ -7,12 +7,11 @@ // is knowledge, the fishing rod you'll need to make anyway, 150 XP and 20 JExp. 003-1,112,93,0 script Sailors#003-1 NPC_ELVEN_MAN_TRADER_SITTING,{ + if (BaseLevel < 15) goto L_Complete; .@q = getq(TulimsharQuest_Sailors); if (.@q == 1) goto L_Report; if (.@q == 2) - goto L_Elmo; - if (.@q == 3) goto L_Complete; mesn; mesq lg("Hey, pal. This spot is very good, I can see the whole town from here."); @@ -26,6 +25,10 @@ l("Maybe another time."), -; close; +L_Complete: + hello; + end; + L_Quest: mes ""; mesn; @@ -84,6 +87,7 @@ L_Report: getexp 150, 20; Zeny=Zeny+21500; // Profit: 800 GP getitem Dagger, 1; // Sell Price: around 300 GP + getitem CottonShirt, 1; setq TulimsharQuest_Sailors, 2; mesn; mesq lg("Many thanks, your help has been invaluable. We're now capable to travel at ease."); |