diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-10-27 17:34:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-10-27 17:34:31 -0300 |
commit | e8da0c19b7ec5ac82a522d14a76e6849c174914e (patch) | |
tree | 746f1b26d13d5ea19e9abf13990b2f150748f0b1 | |
parent | 5b210c66952217b190339fd664e5eea6df3d72bb (diff) | |
download | serverdata-e8da0c19b7ec5ac82a522d14a76e6849c174914e.tar.gz serverdata-e8da0c19b7ec5ac82a522d14a76e6849c174914e.tar.bz2 serverdata-e8da0c19b7ec5ac82a522d14a76e6849c174914e.tar.xz serverdata-e8da0c19b7ec5ac82a522d14a76e6849c174914e.zip |
Craps: Add emphasis to the *actual* result.
-rw-r--r-- | npc/009-8/gambler.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/009-8/gambler.txt b/npc/009-8/gambler.txt index 77dc59167..9a6eaa176 100644 --- a/npc/009-8/gambler.txt +++ b/npc/009-8/gambler.txt @@ -91,7 +91,7 @@ L_Spin: // Check if you won your bet if ((.@result && !.@lose) || (!.@result && .@lose)) { - mesc l("I guess you guessed correctly!"); + mesc b(l("I guess you guessed correctly!")); Zeny += 70; @craps_winstreak += 1; // Streak reward @@ -107,7 +107,7 @@ L_Spin: goto L_Spin; goto L_Quit; } else { - mesc l("Luck wasn't on your side today!"); + mesc b(l("Luck wasn't on your side today!")), 1; @craps_winstreak = 0; } dnext; |