├── .github └── workflows │ └── codeql-analysis.yml ├── LICENSE ├── README.md ├── botConfig.js ├── commands ├── addmoney.js ├── bal.js ├── beg.js ├── buy.js ├── daily.js ├── help.js ├── inventory.js ├── leaderboard.js ├── ping.js ├── prefix.js ├── rob.js ├── search.js ├── setmoney.js ├── shop.js ├── transfer.js ├── weekly.js └── work.js ├── counter.js ├── events ├── debug.js ├── message.js └── ready.js ├── index.js └── package.json /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/README.md -------------------------------------------------------------------------------- /botConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/botConfig.js -------------------------------------------------------------------------------- /commands/addmoney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/addmoney.js -------------------------------------------------------------------------------- /commands/bal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/bal.js -------------------------------------------------------------------------------- /commands/beg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/beg.js -------------------------------------------------------------------------------- /commands/buy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/buy.js -------------------------------------------------------------------------------- /commands/daily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/daily.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/inventory.js -------------------------------------------------------------------------------- /commands/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/leaderboard.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/ping.js -------------------------------------------------------------------------------- /commands/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/prefix.js -------------------------------------------------------------------------------- /commands/rob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/rob.js -------------------------------------------------------------------------------- /commands/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/search.js -------------------------------------------------------------------------------- /commands/setmoney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/setmoney.js -------------------------------------------------------------------------------- /commands/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/shop.js -------------------------------------------------------------------------------- /commands/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/transfer.js -------------------------------------------------------------------------------- /commands/weekly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/weekly.js -------------------------------------------------------------------------------- /commands/work.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/commands/work.js -------------------------------------------------------------------------------- /counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/counter.js -------------------------------------------------------------------------------- /events/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/events/debug.js -------------------------------------------------------------------------------- /events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/events/message.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/events/ready.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeroDiscord/EconomyBot/HEAD/package.json --------------------------------------------------------------------------------