pixlcrashr / go-pbo

An easy-to-use package for building ArmA 3 .pbo-files written in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go-pbo

GitHub license Go Report Card GoDoc

An easy-to-use package for building ArmA 3 .pbo-files in Go.

How to use

go-pbo is a easy-to-use package for creating .pbo-files for ArmA 3. You can create a file by just call these function(s):

pbo := pbo.New() //get a new PBO object
pbo.From = "test/testPbo" //set the mod directory destination
pbo.To = "test/test.pbo" //set the mod file target
pbo.Prefix = "testPbo" //set an optional mod prefix
pbo.Generate() //generate the buffer output
pbo.Save() //save the buffer output

Thats it!

Have fun.

About

An easy-to-use package for building ArmA 3 .pbo-files written in Go

License:MIT License


Languages

Language:Go 99.3%Language:C++ 0.5%Language:SQF 0.2%