diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-14 18:31:46 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-14 18:31:46 -0300 |
commit | 56f493ab5d49479813c052505710dd97d714a1a7 (patch) | |
tree | 149d664a489a5bff726d181c9a7728e7a9237ddd /npc | |
parent | 25e0439638f1f5a5b686c86009f539b49277efc5 (diff) | |
download | serverdata-56f493ab5d49479813c052505710dd97d714a1a7.tar.gz serverdata-56f493ab5d49479813c052505710dd97d714a1a7.tar.bz2 serverdata-56f493ab5d49479813c052505710dd97d714a1a7.tar.xz serverdata-56f493ab5d49479813c052505710dd97d714a1a7.zip |
Gold Ore < Strange Coins.
Now it is properly balanced
Diffstat (limited to 'npc')
-rw-r--r-- | npc/014-5/events.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/014-5/events.txt b/npc/014-5/events.txt index 8e4ea8f5a..954f92e1b 100644 --- a/npc/014-5/events.txt +++ b/npc/014-5/events.txt @@ -68,8 +68,8 @@ mes ("%%0 - "+l("GP")); mes ("%%1 - "+getitemlink(CasinoCoins)); mes ("%%2 - "+getitemlink(Topaz)); - mes ("%%3 - "+getitemlink(StrangeCoin)); mes ("%%4 - "+getitemlink(GoldOre)); + mes ("%%3 - "+getitemlink(StrangeCoin)); mes ("%%5 - "+getitemlink(GoldenGift)); mes ("%%6 - "+getitemlink(GoldenApple)); close; @@ -150,12 +150,12 @@ case 2: // Topaz getitem Topaz, 1; break; - case 3: // Strange Coins - getitem StrangeCoin, max(1, .@boost/10); - break; - case 4: // Gold Ore + case 3: // Gold Ore getitem GoldOre, 1; break; + case 4: // Strange Coins + getitem StrangeCoin, max(1, .@boost/10); + break; case 5: // Golden Gift getitem GoldenGift, 1; break; |