diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-15 02:25:15 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-15 02:25:15 -0200 |
commit | 41bd11d9e5ea1bd1dbac4f93cbd32fa426dcb666 (patch) | |
tree | 22e8ae939040db3fe14b6999a18ab30d4436d66d /npc/015-2/ben.txt | |
parent | 2925600b4bc2441a5eb49fdb765ba82011dca751 (diff) | |
download | serverdata-41bd11d9e5ea1bd1dbac4f93cbd32fa426dcb666.tar.gz serverdata-41bd11d9e5ea1bd1dbac4f93cbd32fa426dcb666.tar.bz2 serverdata-41bd11d9e5ea1bd1dbac4f93cbd32fa426dcb666.tar.xz serverdata-41bd11d9e5ea1bd1dbac4f93cbd32fa426dcb666.zip |
You can now learn ADD_WEIGHT (2kg) or STEALING (7%) on Merc/Thief rank 2.
Diffstat (limited to 'npc/015-2/ben.txt')
-rw-r--r-- | npc/015-2/ben.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/015-2/ben.txt b/npc/015-2/ben.txt index 979ad50aa..c965131cc 100644 --- a/npc/015-2/ben.txt +++ b/npc/015-2/ben.txt @@ -35,6 +35,7 @@ L_Quest: THIEF_RANK+=1; mesn; mesq l("Congrats! You rank up! You are now a(n) @@!", thiefrank()); + if (THIEF_RANK == 2) goto L_Rank2; } else { mesn; mesq l("Well, you need more experience. Keep trying!"); @@ -57,6 +58,17 @@ L_Recruit: } close; +// Learn STEAL +L_Rank2: + skill(TF_STEAL,1,0); + next; + mesn; + mesq l("Now, you'll learn a thief trick! This one allows you to steal drops from monsters! Ka-pow! Amazing!"); + next; + mesn; + mesq l("You must be close to it, and stealing won't change drops! If you fail, just try again! Good luck!"); + close; + OnInit: .sex = G_MALE; .distance = 5; |