├── CMLoot.ps1 ├── CMLoot.psm1 ├── LICENSE ├── README.md ├── TODO.md └── demo ├── extension.gif ├── gridselect.gif ├── hunt.gif └── inventory.gif /CMLoot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/CMLoot.ps1 -------------------------------------------------------------------------------- /CMLoot.psm1: -------------------------------------------------------------------------------- 1 | Get-ChildItem (Join-Path $PSScriptRoot *.ps1) | % { . $_.FullName} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/TODO.md -------------------------------------------------------------------------------- /demo/extension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/demo/extension.gif -------------------------------------------------------------------------------- /demo/gridselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/demo/gridselect.gif -------------------------------------------------------------------------------- /demo/hunt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/demo/hunt.gif -------------------------------------------------------------------------------- /demo/inventory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1njected/CMLoot/HEAD/demo/inventory.gif --------------------------------------------------------------------------------