-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmain.js
More file actions
22 lines (17 loc) · 501 Bytes
/
Copy pathmain.js
File metadata and controls
22 lines (17 loc) · 501 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const settings = require('./lib/Settings');
const core = require('./lib/Core');
var modules = [];
//modules.push('events/salequeue');
//modules.push('events/FreeDailySticker');
//modules.push('profileComment');
//modules.push('Wishlist_AddGame');
//modules.push('GameRecommend_Add');
modules.push('ActivateFreeGame');
core.RunAllBots(modules)
.then(function () {
}).catch(function (error) {
core.logError("Somefing happend!");
core.logError(error);
}).finally(function () {
process.exit();
})