├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ └── docker-publish.yml ├── .gitignore ├── Commands ├── spaddcode.ts ├── spaddloc.ts ├── spaddprettyname.ts ├── spaddstockpile.ts ├── spdisabletime.ts ├── spfind.ts ├── spgroup.ts ├── sphelp.ts ├── spitems.ts ├── splistloc.ts ├── sppurgestockpile.ts ├── sprefresh.ts ├── spremovecode.ts ├── spremoveloc.ts ├── spremovelogichannel.ts ├── spremoveprettyname.ts ├── spremovestockpile.ts ├── spremovetarget.ts ├── sprole.ts ├── spscan.ts ├── spsetamount.ts ├── spsetlogichannel.ts ├── spsetorder.ts ├── spsetpassword.ts ├── spsettarget.ts ├── spsettimeleft.ts ├── spstatus.ts ├── sptimeoutnotif.ts └── spuser.ts ├── Dockerfile ├── ItemNumbering.csv ├── Locs.csv ├── README.md ├── SearchImage.py ├── Utils ├── autoCompleteHandler.ts ├── buttonHandler.ts ├── checkPermissions.ts ├── checkTimeNotifs.ts ├── findBestMatchItem.ts ├── generateStockpileMsg.ts ├── stockpilerUpdateStockpile.ts └── updateStockpileMsg.ts ├── constants.ts ├── deploy-commands.ts ├── docker-compose.yml ├── index.ts ├── mongoDB.ts ├── package.json ├── privacy.md ├── screenshots ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── termsOfService.md └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /Commands/spaddcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spaddcode.ts -------------------------------------------------------------------------------- /Commands/spaddloc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spaddloc.ts -------------------------------------------------------------------------------- /Commands/spaddprettyname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spaddprettyname.ts -------------------------------------------------------------------------------- /Commands/spaddstockpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spaddstockpile.ts -------------------------------------------------------------------------------- /Commands/spdisabletime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spdisabletime.ts -------------------------------------------------------------------------------- /Commands/spfind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spfind.ts -------------------------------------------------------------------------------- /Commands/spgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spgroup.ts -------------------------------------------------------------------------------- /Commands/sphelp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/sphelp.ts -------------------------------------------------------------------------------- /Commands/spitems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spitems.ts -------------------------------------------------------------------------------- /Commands/splistloc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/splistloc.ts -------------------------------------------------------------------------------- /Commands/sppurgestockpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/sppurgestockpile.ts -------------------------------------------------------------------------------- /Commands/sprefresh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/sprefresh.ts -------------------------------------------------------------------------------- /Commands/spremovecode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spremovecode.ts -------------------------------------------------------------------------------- /Commands/spremoveloc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spremoveloc.ts -------------------------------------------------------------------------------- /Commands/spremovelogichannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spremovelogichannel.ts -------------------------------------------------------------------------------- /Commands/spremoveprettyname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spremoveprettyname.ts -------------------------------------------------------------------------------- /Commands/spremovestockpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spremovestockpile.ts -------------------------------------------------------------------------------- /Commands/spremovetarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spremovetarget.ts -------------------------------------------------------------------------------- /Commands/sprole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/sprole.ts -------------------------------------------------------------------------------- /Commands/spscan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spscan.ts -------------------------------------------------------------------------------- /Commands/spsetamount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spsetamount.ts -------------------------------------------------------------------------------- /Commands/spsetlogichannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spsetlogichannel.ts -------------------------------------------------------------------------------- /Commands/spsetorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spsetorder.ts -------------------------------------------------------------------------------- /Commands/spsetpassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spsetpassword.ts -------------------------------------------------------------------------------- /Commands/spsettarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spsettarget.ts -------------------------------------------------------------------------------- /Commands/spsettimeleft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spsettimeleft.ts -------------------------------------------------------------------------------- /Commands/spstatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spstatus.ts -------------------------------------------------------------------------------- /Commands/sptimeoutnotif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/sptimeoutnotif.ts -------------------------------------------------------------------------------- /Commands/spuser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Commands/spuser.ts -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /ItemNumbering.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/ItemNumbering.csv -------------------------------------------------------------------------------- /Locs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Locs.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/README.md -------------------------------------------------------------------------------- /SearchImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/SearchImage.py -------------------------------------------------------------------------------- /Utils/autoCompleteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/autoCompleteHandler.ts -------------------------------------------------------------------------------- /Utils/buttonHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/buttonHandler.ts -------------------------------------------------------------------------------- /Utils/checkPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/checkPermissions.ts -------------------------------------------------------------------------------- /Utils/checkTimeNotifs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/checkTimeNotifs.ts -------------------------------------------------------------------------------- /Utils/findBestMatchItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/findBestMatchItem.ts -------------------------------------------------------------------------------- /Utils/generateStockpileMsg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/generateStockpileMsg.ts -------------------------------------------------------------------------------- /Utils/stockpilerUpdateStockpile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/stockpilerUpdateStockpile.ts -------------------------------------------------------------------------------- /Utils/updateStockpileMsg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/Utils/updateStockpileMsg.ts -------------------------------------------------------------------------------- /constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/constants.ts -------------------------------------------------------------------------------- /deploy-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/deploy-commands.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/index.ts -------------------------------------------------------------------------------- /mongoDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/mongoDB.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/package.json -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/privacy.md -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /termsOfService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/termsOfService.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tkaixiang/Storeman-Bot/HEAD/tsconfig.json --------------------------------------------------------------------------------