diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-25 11:54:25 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-25 11:54:25 -0200 |
commit | 38f06d1776f1d49069e13655e2514be3a840fb2b (patch) | |
tree | 6b584247712d1196e04052c603078dfafb541870 /npc | |
parent | 637b1fee7f79c6acae420a2a1968ee55905d5b92 (diff) | |
download | serverdata-38f06d1776f1d49069e13655e2514be3a840fb2b.tar.gz serverdata-38f06d1776f1d49069e13655e2514be3a840fb2b.tar.bz2 serverdata-38f06d1776f1d49069e13655e2514be3a840fb2b.tar.xz serverdata-38f06d1776f1d49069e13655e2514be3a840fb2b.zip |
Allow Lieutenant Paul to reset if you accidentaly exchange monster points.
Say how much EXP/JEXP you've gained
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-1/guards.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index 37bce995c..7b6fa8483 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -72,6 +72,7 @@ L_Assign: case 11: @xp=10234; break; } getexp @xp, @fc*3; + mesc l("* Gained @@ EXP and @@ Job Exp", @xp, @fc*3); close; } // Assign quest @@ -90,6 +91,11 @@ L_Assign: } // Resume quest else { + // Reset if needed + if (Mobpt-.@k < 0) { + setq2 HurnscaldQuest_Lieutenant, Mobpt; + .@k=0; + } mesn; mesq l("You have collected and additional of @@/@@ Mob Points.", Mobpt-.@k, @rq); } |