diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-01-08 03:33:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-01-08 03:33:19 -0300 |
commit | bf3f47fa6cefc26ea23894f0479cf6b43e604165 (patch) | |
tree | 529ca8ad1fcf944494eb87b6e55d4535119afe87 /npc/019-4-1 | |
parent | a74c7c39620ea48eccbbe527e5430743d89d478e (diff) | |
download | serverdata-bf3f47fa6cefc26ea23894f0479cf6b43e604165.tar.gz serverdata-bf3f47fa6cefc26ea23894f0479cf6b43e604165.tar.bz2 serverdata-bf3f47fa6cefc26ea23894f0479cf6b43e604165.tar.xz serverdata-bf3f47fa6cefc26ea23894f0479cf6b43e604165.zip |
Golbarez: Limit so no more than 100 Strange Coins can be obtained during Christmas
100 Strange Coins = 3,000,000 GP
Diffstat (limited to 'npc/019-4-1')
-rw-r--r-- | npc/019-4-1/chief.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/019-4-1/chief.txt b/npc/019-4-1/chief.txt index c33dc28a6..1b46c2629 100644 --- a/npc/019-4-1/chief.txt +++ b/npc/019-4-1/chief.txt @@ -93,7 +93,7 @@ L_Reward: /* Mostly Coins, some Merc Boxes, EXP/JExp */ /* Gift the best people at this quest, too */ getexp .@q2/4, (.@q2/1000)+.@q1; - .@coins=.@q2/10000; + .@coins=limit(0, .@q2/10000, 300); REAL_ESTATE_CREDITS+=.@q2*15/10; if (.@coins) getitem CasinoCoins, .@coins; |