-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.js
More file actions
107 lines (106 loc) · 4.29 KB
/
context.js
File metadata and controls
107 lines (106 loc) · 4.29 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
module.exports = function() {
require('dotenv').config({
silent: process.env.NODE_ENV === 'production'
});
jqbx = require("./jqbx-api");
require('moment-timezone');
request = require('request');
moment = require('moment');
firebase = require('firebase');
Spotify = require('node-spotify-api');
striptags = require('striptags');
spotify = new Spotify({
id: process.env.SPOTIFY_ID,
secret: process.env.SPOTIFY_SECRET
});
bot = {
user: {
username: process.env.JQBX_NAME,
id: process.env.JQBX_USERID,
_id: process.env.JQBX_ID,
uri: "spotify:user:" + process.env.JQBX_USERID,
image: process.env.JQBX_IMAGE,
device: "bot",
status: "active",
country: "US"
},
roomid: process.env.JQBX_ROOMID,
song: null,
hornchain: 0,
commands: [],
phrases: {
"rawr": "RAWR",
"clap": ":clap: :clap: :clap:",
"sheesh": "sheeeeeeeeeeesh",
"shrug": "¯\\_(ツ)_/¯",
"shots": "SHOTS",
"wait": "wait",
"ro": "no",
"secretcodeword": "http://bandsdirtiehates.online",
"leaderboard": "https://thompsn.com/jqbx/leaderboard/?board=down",
"help": "please download our rules pdf",
"x": "JASON!",
"1": "Never outshine the master",
"2": "Never put too much trust in friends, learn how to use enemies",
"3": "Conceal your intentions",
"4": "Always say less than necessary",
"5": "So much depends on reputation — guard it with your life.",
"6": "Court attention at all cost",
"7": "Get others to do the work for you, but always take the credit.",
"8": "Make other people come to you — use bait if necessary.",
"9": "Win through your actions, never through argument",
"10": "Infection — avoid the unhappy and unlucky",
"11": "Learn to keep people dependent on you",
"12": "Use selective honesty and generosity to disarm your victim",
"13": "When asking for help, appeal to people's self-interest, never to their mercy or gratitude",
"14": "Pose as a friend, work as a spy",
"15": "Crush your enemy totally.",
"16": "Use absence to increase respect and honor",
"17": "Keep others in suspended terror — cultivate an air of unpredictability.",
"18": "Do not build fortresses to protect yourself — isolation is dangerous.",
"19": "Know who you are dealing with — do not offend the wrong person",
"20": "Do not commit to anyone",
"21": "Play a sucker to catch a sucker — seem dumber than your mark",
"22": "Use the surrender tactic — transform weakness into power.",
"23": "Concentrate your forces",
"24": "Play the perfect courtier",
"25": "Re-create your life.",
"26": "Keep your hands clean",
"27": "Play on people's need to believe to create a cultlike following",
"28": "Enter action with boldness",
"29": "Plan all the way to the end",
"30": "Make your accomplishments seem effortless",
"31": "Control the options — get others to play with the cards you deal",
"32": "Play to people's fantasies",
"33": "Discover each employee's thumbscrew.",
"34": "Be royal in your own fashion — act like a king or queen to be treated like one.",
"35": "Master the art of timing",
"36": "Disdain things you cannot have — ignoring them is the best revenge.",
"37": "Create compelling spectacles",
"38": "Think as you like but behave like others",
"39": "Stir up waters to catch fish.",
"40": "Despise the free lunch",
"41": "Avoid stepping into a great man's shoes",
"42": "Strike the shepherd and the sheep will scatter",
"43": "Work on the hearts and minds of others.",
"44": "Disarm and infuriate with the 'mirror effect'",
"45": "Preach the need for change, but never reform too much at once.",
"46": "Never appear too perfect. — Only gods and the dead can seem perfect with impunity.",
"47": "Do not go past the mark you aimed for — in victory, learn when to stop.",
"48": "Assume formlessness."
},
users: null,
roomName: null,
roomSlug: null,
regions: [],
lastActive: {},
warned: {},
djs: [],
playlist: [],
afkTimer: null,
afkLimit: 24,
voted: false,
coinIssued: true,
dbLoaded: false
};
};