Hippo0o / bg3-mods

GNU General Public License v3.0
11 stars 1 forks source link

Collection of my BG3 mods

Useful commands

JSON to Lua

perl -pe 's/"(\w+)"\s?:/$1=/; s/\[/\{/g; s/\]/\}/g' input.json > output.lua

count lines of code (ToT)

rg "^(\s+\w+|\w)" -c -g '*.lua' -g '!**/Templates/**' -g '!OsirisEventDebug.lua' | awk -F':' '{sum += $2} END {print sum}'