-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSkinPeek.js
More file actions
25 lines (23 loc) · 819 Bytes
/
SkinPeek.js
File metadata and controls
25 lines (23 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import {loadConfig} from "./misc/config.js";
import {startBot} from "./discord/bot.js";
import {loadLogger} from "./misc/logger.js";
import {transferUserDataFromOldUsersJson} from "./valorant/auth.js";
/* TODO list:
* (done) Balance
* (done) Auto fetch skins on startup
* (done) Skin notifier/reminder
* (done) Auto check for new valorant version every 15 minutes
* (done) See current bundles
* Password encryptor
* Inspect weapon skin (all 4 levels + videos + radianite upgrade price)
* Option to send shop automatically every day
* More options in config.json
* Simple analytics to see how many servers the bot is in
* Admin commands (delete user, see/edit everyone's alerts, etc.)
*/
const config = loadConfig();
if(config) {
loadLogger();
transferUserDataFromOldUsersJson();
startBot();
}