diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-18 03:06:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-18 03:06:13 -0300 |
commit | 103eda6d05498af0ca23073b19379647e06161db (patch) | |
tree | d9b0f836423abd6774ad22a6ec859f5592878e12 /npc/003-9 | |
parent | 619f0a5002ff7de36b515b656116b03c249f775b (diff) | |
download | serverdata-103eda6d05498af0ca23073b19379647e06161db.tar.gz serverdata-103eda6d05498af0ca23073b19379647e06161db.tar.bz2 serverdata-103eda6d05498af0ca23073b19379647e06161db.tar.xz serverdata-103eda6d05498af0ca23073b19379647e06161db.zip |
Remove entirely Tulimshar Inn Gambling Exchange.
It needs a complete rework.
Diffstat (limited to 'npc/003-9')
-rw-r--r-- | npc/003-9/gambler.txt | 29 |
1 files changed, 2 insertions, 27 deletions
diff --git a/npc/003-9/gambler.txt b/npc/003-9/gambler.txt index dcd7e9f7c..31dad9f60 100644 --- a/npc/003-9/gambler.txt +++ b/npc/003-9/gambler.txt @@ -2,7 +2,7 @@ // Author: // Jesusalva // Description: -// Tulimshar Inn Recepcionist +// Tulimshar Inn Receptionist 003-9,42,123,0 script Gambler Master NPC_LOF_NOBLEMAN,{ mesn; @@ -14,15 +14,12 @@ { next; select - l("I want to turn over my Casino Coins."), l("How does Gambling works?"), l("How can I obtain casino coins?"), l("Nothing, thanks."); mes ""; switch (@menu) { case 1: - goto L_Trade; - case 2: mesn; mesq l("You find a slot machine or another gambler, and make a bet!"); next; @@ -35,7 +32,7 @@ mesn; mesq l("If you're afraid of losing everything, then DEFINITELY do not gamble. %%2"); break; - case 3: + case 2: mesn; mesq l("I dunno. I don't think they're sold anywhere."); next; @@ -49,31 +46,9 @@ } while (@menu != 4); close; -L_Trade: - openshop; - closedialog; - close; - OnInit: .sex = G_MALE; .distance = 5; - tradertype(NST_CUSTOM); - - sellitem MercBoxA, 940; - sellitem JeansShorts, 820; - sellitem ElixirOfLife, 150; - sellitem PoisonArrow, 30; end; - -OnCountFunds: - setcurrency(countitem(CasinoCoins)); - end; - -OnPayFunds: - if( countitem(CasinoCoins) < @price ) - end; - delitem CasinoCoins,@price; - purchaseok(); - end; } |