1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # cards
- clr
- minut += 10
- gs 'stat'
- '<right><img <<$set_imgh>> src="images/locations/city/industrial/casino/zalcart.jpg"></right>'
- 'In the hall a lot of free games tables in Blackjack and Casino Wars.'
- act 'To the table game Blackjack':gt 'blackjackPlay', 'new'
- act 'To the table games in Casino War':gt 'kazvar'
- act 'Back in the hall':gt 'hall'
- !!SYMBOLS
- !! ♥
- !! ♠
- !! ♦
- !! ♣
- !!deck of cards
- $suit[1] = 'Spades'
- $symbol[1] = '♠'
- $suit[2] = 'Clubs'
- $symbol[2] = '♣'
- $suit[3] = 'Hearts'
- $symbol[3] = '♥'
- $suit[4] = 'Diamonds'
- $symbol[4] = '♦'
- $number[1] = 'Ace '
- points[1] = 11
- $number[2] = 'Deuce '
- points[2] = 2
- $number[3] = 'Three '
- points[3] = 3
- $number[4] = 'Four '
- points[4] = 4
- $number[5] = 'Five '
- points[5] = 5
- $number[6] = 'Six '
- points[6] = 6
- $number[7] = 'Seven '
- points[7] = 7
- $number[8] = 'Eight '
- points[8] = 8
- $number[9] = 'Nine '
- points[9] = 9
- $number[10] = 'Ten '
- points[10] = 10
- $number[11] = 'Jack '
- points[11] = 10
- $number[12] = 'Queen '
- points[12] = 10
- $number[13] = 'King '
- points[13] = 10
- $number[14] = 'Ace '
- points[14] = 11
- --- cards ---------------------------------
|