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

  1. ; Play my 2's if there is only one other value left
  2. 2    NumDiffVals = 1
  3.  
  4. ; Play quads 65% of the time if possible
  5. LQ    Random > 35
  6.  
  7. ; Play triples 75% of the time if possible
  8. LT    Random > 25
  9.  
  10. ; Play high pairs if rank is high
  11. LP    CardVal < K    Rank < 4
  12.  
  13. ; A random chance that previous rule will work at any rank
  14. LP    CardVal < K    Random > 45
  15.  
  16. ; Lead high card if at a high rank 20% of the time
  17. L    CardVal > 10    Rank < 3    Random > 80    
  18.    
  19. ; Lead any single 85% of the time
  20. L    CardVal < 15    Random > 15
  21.   
  22. ; Break up sets 66% of the time
  23. L*    Random > 33
  24.  
  25. ; Always lead a card if I have the lead
  26. L*    Lead = 1
  27.  
  28. ; Play a 2 if I have a spare one 70% of the time
  29. 2    TotMyTwos > 1 Random > 30    
  30.