Skip to content

jcmoyer/moonstorm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

moonstorm

Overview

Lua 5.3 bindings for StormLib, a library for reading and writing MPQ files. Currently under development and by no means stable. You have been warned!

Lua 5.3 is required for 64-bit integer support and bitwise operators.

Example

-- load moonstorm module
local moonstorm = require('moonstorm')

-- open a Warcraft III map and print its script to stdout
local map = moonstorm.open('mymap.w3x')
local f = map:openfile('war3map.j')
print(f:read())

-- cleanup
f:close()
map:close()

Documentation

Coming soon!

License

Apache License

About

Lua bindings for StormLib

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors