home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
500 Game Surplus
/
XSurplus.iso
/
371
/
RANDOM.RU_
/
RANDOM.RU
Wrap
Text File
|
1997-06-26
|
697b
|
30 lines
; Play my 2's if there is only one other value left
2 NumDiffVals = 1
; Play quads 65% of the time if possible
LQ Random > 35
; Play triples 75% of the time if possible
LT Random > 25
; Play high pairs if rank is high
LP CardVal < K Rank < 4
; A random chance that previous rule will work at any rank
LP CardVal < K Random > 45
; Lead high card if at a high rank 20% of the time
L CardVal > 10 Rank < 3 Random > 80
; Lead any single 85% of the time
L CardVal < 15 Random > 15
; Break up sets 66% of the time
L* Random > 33
; Always lead a card if I have the lead
L* Lead = 1
; Play a 2 if I have a spare one 70% of the time
2 TotMyTwos > 1 Random > 30