diff options
-rw-r--r-- | npc/014-5/events.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/014-5/events.txt b/npc/014-5/events.txt index 8e4ea8f5a..07ad4db65 100644 --- a/npc/014-5/events.txt +++ b/npc/014-5/events.txt @@ -146,21 +146,27 @@ break; case 1: // Casino Coins getitem CasinoCoins, max(1, .@boost/10); + Zeny=Zeny+rand(20, .@boost+10); break; case 2: // Topaz getitem Topaz, 1; + Zeny=Zeny+rand(30, .@boost+10); break; case 3: // Strange Coins getitem StrangeCoin, max(1, .@boost/10); + Zeny=Zeny+rand(40, .@boost+10); break; case 4: // Gold Ore getitem GoldOre, 1; + Zeny=Zeny+rand(50, .@boost+10); break; case 5: // Golden Gift getitem GoldenGift, 1; + Zeny=Zeny+rand(60, .@boost+10); break; case 6: // Golden Apple (OP) getitem GoldenApple, 1; + Zeny=Zeny+rand(70, .@boost+10); break; } next; |