diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-07-03 13:05:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-07-03 13:05:11 -0300 |
commit | b32e61fd5f1bf6be621454bf6cff0450ee213af4 (patch) | |
tree | de63b4f32cced57517bbf3223d3c5c4f94b9f104 | |
parent | a88bf7a2700a5d90f868348e0506d0844eb57e72 (diff) | |
download | serverdata-b32e61fd5f1bf6be621454bf6cff0450ee213af4.tar.gz serverdata-b32e61fd5f1bf6be621454bf6cff0450ee213af4.tar.bz2 serverdata-b32e61fd5f1bf6be621454bf6cff0450ee213af4.tar.xz serverdata-b32e61fd5f1bf6be621454bf6cff0450ee213af4.zip |
Xanthem the Gambler now gives illegaly acquired Monster Points
-rw-r--r-- | npc/020-4/gambler.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/020-4/gambler.txt b/npc/020-4/gambler.txt index 4990fa80c..aa520796c 100644 --- a/npc/020-4/gambler.txt +++ b/npc/020-4/gambler.txt @@ -45,6 +45,7 @@ L_Info: next; mesc l("Prizes:"); mesc l("If you're right, you'll get at least 80 GP!"); + mesc l("You'll also get as many Monster Points as GP!"); mesc l("If a tie happens, you'll get your coin back."); mesc l("If you're wrong, your winning streak is reset."); mesc l("Winning Streak is also reset on logout or when you leave the Inn."); @@ -112,6 +113,7 @@ L_Spin: mesc l("Your current win streak is @@!", @gambler_winstreak); $XAN_BETS=$XAN_BETS+1; Zeny+=min((@gambler_winstreak*2), 40); + Mobpt+=80+min((@gambler_winstreak*2), 40); } else { .@bypass=0; } |