diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-29 15:58:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-29 15:58:43 -0300 |
commit | 102fedfcf20076c2048331655a225c24d5df7b47 (patch) | |
tree | 334a9fccbca643b2f7a4014e2e9c43fb564c42e1 /npc/003-10 | |
parent | 4cfbfd726108f794cdf0fbafec0cdb7a79b9cedb (diff) | |
download | serverdata-102fedfcf20076c2048331655a225c24d5df7b47.tar.gz serverdata-102fedfcf20076c2048331655a225c24d5df7b47.tar.bz2 serverdata-102fedfcf20076c2048331655a225c24d5df7b47.tar.xz serverdata-102fedfcf20076c2048331655a225c24d5df7b47.zip |
Is a Bronze Gift better @Saulc ? It should be, it have same difficulty as Monocle,
and it is not a really really rare item...
Diffstat (limited to 'npc/003-10')
-rw-r--r-- | npc/003-10/slots.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-10/slots.txt b/npc/003-10/slots.txt index b62564840..f465e031d 100644 --- a/npc/003-10/slots.txt +++ b/npc/003-10/slots.txt @@ -49,7 +49,7 @@ L_Info: mes ""; mesc l("Prizes:"); mes l("##9 777: @@.", getitemlink(Monocle)); - mesc l("Three equal: 20 strange coins."); + mesc l("Three equal: @@.", getitemlink(BronzeGift)); mesc l("Two equal: 1 casino coin."); next; goto L_Menu; @@ -71,8 +71,8 @@ L_Spin: getitem Monocle, 1; mesc l("Jackpot! You got the Monocle!"), 3; } else if (.@a == .@b && .@a == .@c) { - getitem StrangeCoin, 20; - mesc l("Congrats! You got the coins prize!"), 3; + getitem BronzeGift, 1; + mesc l("Congrats! You got the gift!"), 3; } else if (.@a == .@b || .@a == .@c || .@b == .@c) { getitem CasinoCoins, 1; mesc l("Lucky! You got the coin back!"), 3; |