12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # authors1
- *PL 'Rules of the game are very simple: toss a coin 10 rubles and pull lever. jackpot 100 thousand rubles.'
- *P '<center><img src="casino/avt.jpg" ></center>'
- ACT 'pull the lever':
- if money >= 10:
- x_10=rand(1,1000)
- set money=money-10
- if x_10=1000:
- set money=money+100000
- msg 'You won the jackpot! Congratulations!'
- end
- if x_10<1000 and x_10>=850:
- set money=money+20
- msg 'Congratulations, you win 20 rubles'
- end
- if x_10>=500 and x_10<850:
- set money=money+10
- msg 'congratulations, you win 10 rubles'
- end
- if x_10<500:
- set minut=minut+10
- msg 'Alas you lose, try again'
- end
-
-
-
- clr
-
- gt 'authors1'
- else
- msg 'And how are you going to play without money? Come back when you find the necessary amount'
- gt 'authors1'
- end
-
- END
- ACT 'Back in the room':
- gt 'igravt'
- END
- clr
- gs'stat'
- set minut=minut + 10
- !PL 'In the bag: <<money>> RUB.'
- --- authors1 ---------------------------------
|