home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / pcboard / cookppe.zip / COOKIES.PPS < prev    next >
Text File  |  1993-05-12  |  349b  |  25 lines

  1. ; Cookies.PPE 05-12-93 (C)1993 S.G. Systems, Modify this file to suit
  2. ; your needs!
  3.  
  4. STRING buffer
  5. INTEGER numquotes
  6. INTEGER chosenquote
  7. INTEGER i
  8.  
  9. fopen 1,"cookies",O_RD,S_DN
  10. fget 1,buffer
  11.  
  12. numquotes=buffer
  13. chosenquote=random(numquotes)
  14.  
  15. frewind 1
  16.  
  17. for I=1 to chosenquote
  18.     fget 1,buffer
  19. endfor
  20.  
  21. color 11
  22. println buffer
  23.  
  24. END
  25.