home *** CD-ROM | disk | FTP | other *** search
/ 500 Game Surplus / XSurplus.iso / 371 / POWER.RU_ / POWER.RU
Text File  |  1997-06-26  |  686b  |  32 lines

  1. ; Play my 2's if there is only one other card value
  2. 2    NumDiffVals = 1
  3.  
  4. ; If I am near top then play high Quads
  5. LQ    CardVal < A    Rank < 4
  6.  
  7. ; Lead lower Quads at anytime
  8. LQ    CardVal < Q
  9.  
  10. ; If I am near top then play high Trips
  11. LT    CardVal < A    Rank < 4
  12.  
  13. ; Lead lower Triples at anytime
  14. LT    CardVal < Q
  15.  
  16. ; Always lead high pairs
  17. LP    CardVal < A
  18.  
  19. ; Play a 2 to get lead if it can help me move up near end of game
  20. 2    NumDiffVals < 5    TotMyTwos  > 2
  21. 2    NumDiffVals < 4    TotMyTwos  > 1
  22.  
  23. ; Play a 2 to get the lead if I have a 2 to spare
  24. ;2    TotMyTwos > 1    TwosLeft < 3    Lead = 0
  25.  
  26. ; Play any singles I have
  27. L
  28.  
  29. ; Break up sets if only 1 player is above me
  30. L*    HigherPlayers < 2
  31.  
  32.