home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jumbo 2,500 Game Pack
/
DDVDAV937D1.iso
/
sharewarefin
/
PRESIDNT.ZIP
/
ULTRA.RU_
/
ULTRA.RU
Wrap
Text File
|
1997-06-26
|
1KB
|
49 lines
; Play my twos if there's only one other card value
2 NumDiffVals = 1
; If I've got a two and two other values, play the highest - but don't split
HQ NumDiffVals = 2 TotMyTwos > 0
HT NumDiffVals = 2 TotMyTwos > 0
HP NumDiffVals = 2 TotMyTwos > 0
H NumDiffVals = 2 TotMyTwos > 0
; If I've got two 2's, and two different kinds of cards, get the lead
2 Lead = 0 TotMyTwos = 2 NumDiffVals = 2
2 Lead = 0 TotMyTwos = 3 NumDiffVals = 3
; If there are two players (including me) and I can skip to get the lead, do it
; Even if I have to split something up
L* PlayersLeft = 2 MatchesUpCard = 1
; If I only have two kinds of cards, then play the lowest - even if I have to split
L* NumDiffVals = 2
; Get aggressive (and the lead) if I have lots of twos
2 Lead = 0 TotMyTwos > 1 TwosLeft < 2
2 PlayersLeft < 4 Lead = 0 TotMyTwos > 1
2 Lead = 0 TotMyTwos = 3 TotMyCards < 6
2 Lead = 0 TotMyTwos = 2 TotMyCards < 5
; If the odds are low that I can be followed, and I don't have the lead, play the high card
H* Lead = 0 FollowOdds < 20
; Always follow or lead a quad or trip, regardless
LQ
LT
; And always follow a low pair
LP Lead = 0 CardVal < 10
; Or follow a card if it's of low value
L Lead = 0 CardVal < 10
; If I have a mediocre hand, pass
P Lead = 0 HandValue < 7 TotMyTwos < 2
P Lead = 0 HandValue < 9 TotMyTwos = 0
; Play anything to try and get the lead - without splitting, first
LP
L
; But split if I have to
L*