home *** CD-ROM | disk | FTP | other *** search
/ 1,000 Best Games for Windows / 1000BestGamesForWindows.iso / sharewarefin / PRESIDNT.ZIP / MOVER.RU_ / MOVER.RU
Text File  |  1997-06-26  |  696b  |  28 lines

  1. ;Play my 2's if there is only one other card value
  2. 2    NumDiffVals = 1
  3.  
  4. ;Pass at beginning of game if at a low position to save high cards for end of game
  5. P    Lead = 0   NumDiffVals > 4  TwosLeft > 1  HigherPlayers > 1  TotMyTwos < 1        CardVal > 10
  6.  
  7. ;Play highest sets without breaking them up
  8. LQ    CardVal < A
  9. LT    CardVal < K
  10. LP    CardVal < K
  11. L    
  12.  
  13. ;Ace and king sets are played if at a high rank
  14. LQ    Rank < 3
  15. LT    Rank < 3
  16. LP    Rank < 3
  17.  
  18. ;Split sets if only one higher player, but never split a pair of 3's
  19. L*    HigherPlayers < 2    CardVal ! 3    
  20.  
  21. ;Play a 2 to get lead if I have one to spare
  22. 2    TotMyTwos > 1
  23.  
  24. ;Never pass when I have the lead
  25. LQ    Lead = 1
  26. LT    Lead = 1
  27. LP    Lead = 1
  28. L    Lead = 1