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

  1. ; Play my 2's if there is only one other card value
  2. 2    NumDiffVals = 1
  3.  
  4. ; Play lowest values less than an Ace but dont break up sets
  5. LQ    CardVal < A    
  6. LT    CardVal < A    
  7. LP    CardVal < A    
  8. L
  9.  
  10. ; Break up sets if only one or two higher players
  11. L*    HigherPlayers < 3
  12.  
  13. ; If I am in a losing postion then break up sets near end of hand
  14. L*    PlayersLeft < 4    NumDiffVals < 5
  15.  
  16. ; Play a 2 if I have one to spare near end of game
  17. 2    %Played > 45    TotMyTwos > 1
  18.  
  19. ; Never pass when we have the lead
  20. LQ     Lead = 1
  21. LT    Lead = 1
  22. LP    Lead = 1
  23. L    Lead = 1
  24.