home *** CD-ROM | disk | FTP | other *** search
/ Amiga Power / AmigaPower58Disk2.ZIP / ap58-2.adf / SWOS-Editor / RNCDepack.doc < prev    next >
Text File  |  1996-01-03  |  3KB  |  64 lines

  1. RNC Data Depacker V2.1 by ])-R0C/bODYcOUNT dK!
  2. ----------------------------------------------
  3.  
  4. This little tool allows the user to depack all of the files that have been
  5. crunched using RNC's Propack utility.  Version one of this tool was quite
  6. useful when it was released over a year ago, but since then there have been
  7. some RNC files that have managed to evade this decruncher by being crunched
  8. using the FAST(Method 2) algorithm.
  9.  
  10. I've been busy coding games and haven't had time to do any ripping for the
  11. method 2 algorithm, but low and behold in one of the EX4 coverdisks there it
  12. was all nicely intact.  So, I updated this utility to allow method 2 crunched
  13. files to be depacked.  Since the sources in EX4 also had CRC checks with them
  14. I decided to incorporate them also, as it wasn't difficult to do.
  15.  
  16. This utility should now depack correctly both method 1 and method 2 RNC packed
  17. files.  It should not care if a file is locked or not (except with a key) and
  18. should report it's progress while decrunching.
  19.  
  20. Another feature added to this program is the ability to enter a decryption key
  21. as a third parameter.  This must be a hex longword and must start with a dollor
  22. sign like standard hex.  The command line for depack is as follows...
  23.  
  24.  
  25.    Depack [<Input file>] [Output file] [$Decryption key]
  26.  
  27.  
  28. As you can see from the above command line, the input filename is the ONLY
  29. essential piece of information depack requires.  If the output filename is
  30. omitted then the input file will be overwritten.  If the decryption key is
  31. omitted then the file is depacked with a key of 0 (normal).
  32.  
  33. Here are a few examples for the lame brains out there....
  34.  
  35. Eg.
  36.    Depack Logo.RNC Logo.iff
  37.  
  38. The above example will depack the file Logo.RNC to a file called Logo.iff
  39.  
  40. Eg.
  41.    Depack Logo.RNC $00000929
  42.  
  43. This example will depack Logo.RNC and decrypt it with the key $00000929.  The
  44. input file will be overwritten.  As you can see the command line looks for a
  45. dollar sign to identify the decrpytion key.  Please don't try and fuck things
  46. up by using files starting with dollor signs etc. as I didn't do shit-loads
  47. of checks to serious arse-holes.
  48.  
  49. By the way, if any invalid character are found in the decrpytion key then a
  50. zero will be substituted for the invalid character.  The decryption key is not
  51. case sensitive.
  52.  
  53. Eg.
  54.    Depack Logo.RNC Logo.iff $bc00343y
  55.  
  56. This will depack the file Logo.RNC to a file called Logo.iff and decrypt it
  57. with the key $bc003430.  As you can see the Y in the above decryption key is
  58. invalid and is therefore substituted by a zero when used by depack.
  59.  
  60. Anyway, I think that's about it for this edition...  Hope you all enjoy it and
  61. be merry....
  62.  
  63.  
  64.