diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-15 21:22:41 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-15 21:22:41 -0200 |
commit | 5b09b447d3497bd925a865dfb0c81c8966f9e3c9 (patch) | |
tree | 9bb4cdd53ed980538aed3710bb0b3bdd9a2725b6 /npc/017-3/slots.txt | |
parent | 6d1caada82d507e2fdb2156d180305fdbf656cc3 (diff) | |
download | serverdata-5b09b447d3497bd925a865dfb0c81c8966f9e3c9.tar.gz serverdata-5b09b447d3497bd925a865dfb0c81c8966f9e3c9.tar.bz2 serverdata-5b09b447d3497bd925a865dfb0c81c8966f9e3c9.tar.xz serverdata-5b09b447d3497bd925a865dfb0c81c8966f9e3c9.zip |
Rewrite Slot Machines
Diffstat (limited to 'npc/017-3/slots.txt')
-rw-r--r-- | npc/017-3/slots.txt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/npc/017-3/slots.txt b/npc/017-3/slots.txt index ae74cd9e0..d77761d72 100644 --- a/npc/017-3/slots.txt +++ b/npc/017-3/slots.txt @@ -42,7 +42,6 @@ L_Menu: menu rif(countitem(CasinoCoins) >= 2, l("Spin!")), L_Spin, l("Prizes"), L_Info, - l("Trade"), L_Trade, l("Leave"), L_Quit; L_Info: @@ -101,37 +100,14 @@ L_Spin: next; goto L_Menu; -L_Trade: - openshop; - closedialog; - close; - L_Quit: close; OnInit: .sex = G_OTHER; .distance = 4; - tradertype(NST_CUSTOM); - - sellitem WoodenSword, 940; - sellitem JeansShorts, 820; - sellitem ElixirOfLife, 150; - sellitem PoisonArrow, 30; - sellitem StrangeCoin, 5; end; -OnCountFunds: - setcurrency(countitem(CasinoCoins)); - end; - -OnPayFunds: - if( countitem(CasinoCoins) < @price ) - end; - delitem CasinoCoins,@price; - purchaseok(); - end; - } |