diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-06-17 08:05:57 +0000 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-06-17 08:05:57 +0000 |
commit | 70a323d2f9a3256bf3b82ae3d5d4f8c493211a97 (patch) | |
tree | aea1bae66a55a8228ad0ced2439419da73954fb5 /npc/005-7/trainer.txt | |
parent | 02e580b863b7ca6bc29b209785b50f6e000ba5f6 (diff) | |
download | serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.tar.gz serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.tar.bz2 serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.tar.xz serverdata-70a323d2f9a3256bf3b82ae3d5d4f8c493211a97.zip |
Add +5% exp reward to each quest! and add some exp if nothing exist.
Diffstat (limited to 'npc/005-7/trainer.txt')
-rw-r--r-- | npc/005-7/trainer.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/005-7/trainer.txt b/npc/005-7/trainer.txt index 7868a82e1..b33e9372e 100644 --- a/npc/005-7/trainer.txt +++ b/npc/005-7/trainer.txt @@ -69,7 +69,7 @@ L_Trainment: mesq l("You are killing @@. They are usually at the crops.", getmonsterlink(Maggot)); } else if (.@q == 2) { mesq l("Good job! Here is your reward! (40 xp 25 gp)"); - getexp 40, 0; + getexp 30, 0; set Zeny, Zeny + 25; setq CandorQuest_Trainer, 3, 0; } else if (.@q == 3) { @@ -81,7 +81,7 @@ L_Trainment: mesq l("You are killing @@ at the storehouse.", getmonsterlink(HouseMaggot)); } else if (.@q == 5) { mesq l("Perfect! Here is your reward! (40 xp 25 gp)"); - getexp 40, 0; + getexp 42, 0; set Zeny, Zeny + 25; setq CandorQuest_Trainer, 6, 0; } else if (.@q == 6) { @@ -93,7 +93,7 @@ L_Trainment: mesq l("You are killing @@ at the beach.", getmonsterlink(CandorScorpion)); } else if (.@q == 8) { mesq l("Managed to drop anything? It requires more luck than skill. Here is your reward. (40 xp 25 gp)"); - getexp 40, 0; + getexp 53, 0; set Zeny, Zeny + 25; setq CandorQuest_Trainer, 9, 0; } else if (.@q == 9) { @@ -106,7 +106,7 @@ L_Trainment: } else if (.@q == 11) { mesq l("Congratulations! Here is your reward (40 xp 25 gp)."); mesq l("You completed your trainment, so you're getting 50 bonus experience points. If you level up, use your stat points wisely!"); - getexp 90, 0; + getexp 70, 0; set Zeny, Zeny + 25; setq CandorQuest_Trainer, 12, 0; } else if (.@q == 12 && BaseLevel >= 9) { @@ -120,6 +120,7 @@ L_Trainment: mesq l("Wow! You did it! I do not think anyone else could have done that."); mesq l("Here, take this @@ - you deserve it! And here is 200 GP to buy a better weapon.", getitemlink(CandorHeadBand)); inventoryplace CandorHeadBand, 1; + getexp 80, 5; getitem CandorHeadBand, 1; set Zeny, Zeny + 200; setq CandorQuest_Trainer, 15, 0; |