home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / CASIOCOL.ZIP / KRILE1A.ZIP / SOURCE.ZIP / PREP.ASI < prev    next >
Text File  |  1997-11-27  |  217b  |  18 lines

  1. randomize
  2. open"r",1,"krile.exe"
  3. a=filepos(1,302)
  4. for x=1 to 49
  5. b=rnd(0)
  6. b=b mod 256
  7. b=b+1
  8. a$=chr$(b)
  9. a$=ltrim$(a$)
  10. a$=rtrim$(a$)
  11. if a$="" then
  12. print #1,a$
  13. else
  14. print #1,a$ NONULL
  15. endif
  16. next x
  17. close 1
  18.