lol-wad-parser
A parser for .wad files from League of Legends.
Download
lol-wad-parser is installable via:
Usage example
var WadParser = wad = ; wad;
Available methods
N.B: All methods act as promises if no callback is passed.
parse(path, cb)
It will roughly parse a .wad file from the given path.
Parameters
- path {string} A path to where the file to parse resides.
- [cb] {Function} A callback called with
(error, parsedData)
as arguments.
read(path, cb)
It will read a .wad file from the given path, casting all the data into the right variable type.
Parameters
- path {string} A path to where the file to read resides.
- [cb] {Function} A callback called with
(error, readData)
as arguments.
extract(input, output, cb)
It will read a .wad and extract the result on disk.
Parameters
- input {string} A path to where the file to read resides.
- output {string} The path where the file should be stored.
- [cb] {Function} A callback called with
(error)
as arguments.