summaryrefslogtreecommitdiff
path: root/npc/tulimshar-casino/casino.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/tulimshar-casino/casino.txt')
-rw-r--r--npc/tulimshar-casino/casino.txt16
1 files changed, 5 insertions, 11 deletions
diff --git a/npc/tulimshar-casino/casino.txt b/npc/tulimshar-casino/casino.txt
index db39298f..c0a0a671 100644
--- a/npc/tulimshar-casino/casino.txt
+++ b/npc/tulimshar-casino/casino.txt
@@ -17,6 +17,7 @@ new_8-1.gat,32,74 warp tohall 1,0,new_8-1.gat,68,23
new_8-1.gat,26,26,0 shop InnKeeper 112,539:175,513:20,519
new_8-1.gat,103,26,0 script Waitress 118,{
+ if (zeny < 100) goto L_NoMoney;
mes "[Rebecca]";
mes "Would you like to rest? It's only 100 gp.";
next;
@@ -25,7 +26,6 @@ new_8-1.gat,103,26,0 script Waitress 118,{
mes "Sleep well!";
next;
- if (zeny < 100) goto L_NoMoney;
set zeny,zeny-100;
heal 10000,10000;
close;
@@ -35,26 +35,20 @@ L_No:
close;
L_NoMoney:
- mes "Hey! You don't have enough money!";
+ mes "Would you like to rest? Come back if you have at least 100 gp.";
close;
}
new_8-1.gat,24,23,0 script RoyalGuard 125,{
mes "[Royal Guard]";
- mes "Hey you seems tough enough!";
- mes "Would you like to prove your skills?";
- next;
-
- mes "[Royal Guard]";
- mes "If you give me 1000gp I'll let you in.";
- mes "You will fight against other players.";
+ mes "Hey, you seem tough enough! Would you like to prove your skills? I'll let you in the arena if you give me 1000 gp. You can fight against other players there.";
next;
+ if (zeny < 1000) goto L_NoMoney;
menu "Yes",-,"No",L_No;
mes "Get ready!";
next;
- if (zeny < 1000) goto L_NoMoney;
set zeny,zeny-1000;
warp "new_6-1.gat",0,0;
close;
@@ -64,7 +58,7 @@ L_No:
close;
L_NoMoney:
- mes "Hey! You don't have enough money!";
+ mes "Wait a second, you don't have enough money.";
close;
}