diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-04 22:54:51 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-04 22:54:51 -0200 |
commit | c2bfed988424c386e63f5bc44131f7c0b428198e (patch) | |
tree | abcdbe31c8f4583871a336af9389a00a547e67ff /npc | |
parent | 8e58448a466b203da1bb3d6718852c45cdbb483c (diff) | |
download | serverdata-c2bfed988424c386e63f5bc44131f7c0b428198e.tar.gz serverdata-c2bfed988424c386e63f5bc44131f7c0b428198e.tar.bz2 serverdata-c2bfed988424c386e63f5bc44131f7c0b428198e.tar.xz serverdata-c2bfed988424c386e63f5bc44131f7c0b428198e.zip |
After killing Candor Scorpion, Trainer will give you a small knife.
It gives 35 damage (instead of 25 from the Rusty Knife). It is a necessity.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/005-7/trainer.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/005-7/trainer.txt b/npc/005-7/trainer.txt index c7005eb4c..dba80b19a 100644 --- a/npc/005-7/trainer.txt +++ b/npc/005-7/trainer.txt @@ -115,9 +115,11 @@ L_Trainment: } else if (.@q == 7) { mesq l("You are killing @@ at the beach.", getmonsterlink(CandorScorpion)); } else if (.@q == 8) { + inventoryplace SmallKnife, 1; mesq l("Managed to drop anything? It requires more luck than skill. Here is your reward."); getexp 53, 0; set Zeny, Zeny + 25; + getitem SmallKnife, 1; setq CandorQuest_Trainer, 9, 0; } else if (.@q == 9) { mesq l("This will be the last task. Besides the @@, the strongest monster on this island worth killing is the @@.", getmonsterlink(ManaBug), getmonsterlink(Scorpion)); |