├── .github ├── CONTRIBUTING.md ├── FEATURES.md ├── FUNDING.yml ├── PRIVACY.md ├── SECURITY.md ├── TROUBLESHOOTING.md ├── USER_AGREEMENT.md ├── changelog.md ├── guideIMGS │ ├── LeaveAnStar.png │ ├── LogoNodeJS.png │ └── img1.png └── workflows │ ├── sync-to-gitlab.yml │ ├── test.yml │ └── test2.yml ├── Install.bat ├── LICENSE ├── README.md ├── app ├── SETTINGS │ └── config.js ├── [DB] ChatLogs │ ├── FullLogs │ │ └── .notfile │ └── UserLogs │ │ └── .notfile ├── [DB] SetsData │ └── set_data.json ├── [DB] TradesAccepted │ └── .notfile ├── [DB] UserData │ ├── Users.json │ └── reminder.json ├── app.js ├── functions.js ├── methods.js └── utils.js ├── index.js ├── node version.txt ├── package.json ├── start.bat └── upgrade.bat /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/FEATURES.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/PRIVACY.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /.github/USER_AGREEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/USER_AGREEMENT.md -------------------------------------------------------------------------------- /.github/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/changelog.md -------------------------------------------------------------------------------- /.github/guideIMGS/LeaveAnStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/guideIMGS/LeaveAnStar.png -------------------------------------------------------------------------------- /.github/guideIMGS/LogoNodeJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/guideIMGS/LogoNodeJS.png -------------------------------------------------------------------------------- /.github/guideIMGS/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/guideIMGS/img1.png -------------------------------------------------------------------------------- /.github/workflows/sync-to-gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/workflows/sync-to-gitlab.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/.github/workflows/test2.yml -------------------------------------------------------------------------------- /Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/Install.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/README.md -------------------------------------------------------------------------------- /app/SETTINGS/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/SETTINGS/config.js -------------------------------------------------------------------------------- /app/[DB] ChatLogs/FullLogs/.notfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/[DB] ChatLogs/FullLogs/.notfile -------------------------------------------------------------------------------- /app/[DB] ChatLogs/UserLogs/.notfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/[DB] ChatLogs/UserLogs/.notfile -------------------------------------------------------------------------------- /app/[DB] SetsData/set_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/[DB] SetsData/set_data.json -------------------------------------------------------------------------------- /app/[DB] TradesAccepted/.notfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/[DB] TradesAccepted/.notfile -------------------------------------------------------------------------------- /app/[DB] UserData/Users.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /app/[DB] UserData/reminder.json: -------------------------------------------------------------------------------- 1 | {"IDS":[]} -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/app.js -------------------------------------------------------------------------------- /app/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/functions.js -------------------------------------------------------------------------------- /app/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/methods.js -------------------------------------------------------------------------------- /app/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/app/utils.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/index.js -------------------------------------------------------------------------------- /node version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/node version.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refloow/Steam-Card-Bot-PRO/HEAD/package.json -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | title Refloow / Steam-Card-Bot-PRO 2 | cls 3 | node index.js 4 | pause 5 | -------------------------------------------------------------------------------- /upgrade.bat: -------------------------------------------------------------------------------- 1 | explorer "https://github.com/Refloow/Steam-Card-Bot-ULTRA" 2 | --------------------------------------------------------------------------------