diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-23 20:45:25 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-23 20:45:25 +0000 |
commit | 25b83bc96f59f7235bb20257f221e80d4a348f60 (patch) | |
tree | 401a77a9dbfd958f51a9d3a6918d7e2ddcee2522 /npc/tulimshar-casino/casino.txt | |
parent | db19236016d863f942d3b6f6e2c98715214ee947 (diff) | |
download | serverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.tar.gz serverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.tar.bz2 serverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.tar.xz serverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.zip |
Made some scripts a bit less annoying (like don't offer a bed if the player
doesn't have enough money) and added some information (rewards master tells you
your number of monster points). I hope I didn't break anything.
Diffstat (limited to 'npc/tulimshar-casino/casino.txt')
-rw-r--r-- | npc/tulimshar-casino/casino.txt | 16 |
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; } |