├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── node.js.yml ├── .gitignore ├── .replit ├── INSTALLATION.md ├── LICENSE ├── README.md ├── bot.js ├── commands ├── avatar.js ├── farm.js ├── help.js ├── im.js ├── info-server.js ├── inventory.js ├── market.js ├── mine.js ├── ping.js ├── profile.js ├── prune.js ├── reaction.js ├── reload.js └── restart.js ├── config.json ├── index.html ├── json.sqlite ├── keep_alive.js ├── manifest.json ├── models ├── items.js ├── member.js ├── profile.js └── schema │ ├── guild.js │ ├── log.js │ └── user.js ├── package.json └── shrinkwrap.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/.replit -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/bot.js -------------------------------------------------------------------------------- /commands/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/avatar.js -------------------------------------------------------------------------------- /commands/farm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/farm.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/im.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/im.js -------------------------------------------------------------------------------- /commands/info-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/info-server.js -------------------------------------------------------------------------------- /commands/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/inventory.js -------------------------------------------------------------------------------- /commands/market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/market.js -------------------------------------------------------------------------------- /commands/mine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/mine.js -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/ping.js -------------------------------------------------------------------------------- /commands/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/profile.js -------------------------------------------------------------------------------- /commands/prune.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/prune.js -------------------------------------------------------------------------------- /commands/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/reaction.js -------------------------------------------------------------------------------- /commands/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/reload.js -------------------------------------------------------------------------------- /commands/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/commands/restart.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/config.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/index.html -------------------------------------------------------------------------------- /json.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/json.sqlite -------------------------------------------------------------------------------- /keep_alive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/keep_alive.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/manifest.json -------------------------------------------------------------------------------- /models/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/models/items.js -------------------------------------------------------------------------------- /models/member.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/profile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/schema/guild.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/schema/log.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/schema/user.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/package.json -------------------------------------------------------------------------------- /shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameWatch21/CG-Economy/HEAD/shrinkwrap.yaml --------------------------------------------------------------------------------