home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / CASIOCOL.ZIP / KRILE1C.ZIP / SOURCE.ZIP / DECODE.ASI < prev    next >
Text File  |  1997-11-10  |  287b  |  14 lines

  1. decode_mess:
  2. output$=""
  3. rem This routine decrypts our tables in the beginning to useable material
  4. rem For run-time use only. The data in the exe/com is not decrypted!
  5. r=len(temp$)
  6. for x=1 to r
  7. a$=mid$(temp$,x,1)
  8. a=asc(a$)
  9. a=a+127
  10. a$=chr$(a)
  11. output$=output$+a$
  12. next x
  13. return
  14.