Blueprint Shotgun


Adds a gun that shoots items to build ghosts, upgrade entities, and more! Also features a vacuum mode to mine entities, tiles, and ground items.

Utilities
6 months ago
1.1
1.11K

i compress media files to reduce mod size

7 months ago

the mod weighs as much as 5 megabytes, there is no filter on the .ace file and, most importantly, the sound in wav is not in ogg.
I tried converting wav to ogg and got a 6-fold reduction in the unpacked size(6mb to 990k)
the command I used(need cd to dir with files)

for f in *.wav; do ffmpeg -i "$f" "${f%.wav}.ogg" && rm "$f"; done

and in the scripts you will need to reassign all .wav to .ogg

New response