|
@@ -11,12 +11,16 @@ if turn = 0:
|
|
|
' Please give me your bets, gentlemen.'
|
|
|
|
|
|
act 'Make a bet':
|
|
|
- money -= deal
|
|
|
+ if money <= 0:
|
|
|
+ 'You don''t have enough money to place a bet.'
|
|
|
+ act 'Move away from the table':gt 'bldzh'
|
|
|
+ end
|
|
|
turn = 1
|
|
|
deal = input 'Enter the amount'
|
|
|
|
|
|
- if money < deal:
|
|
|
+ if money >= deal:
|
|
|
msg 'You have enough money'
|
|
|
+ money -= deal
|
|
|
gt 'igrkart1'
|
|
|
elseif deal < 0:
|
|
|
msg 'Wrong, try again.'
|