forked from oldramen/hashtag-amy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.js
659 lines (656 loc) · 24.3 KB
/
commands.js
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/**
* @copyright 2012 yayramen && Inumedia.
* @author Inumedia
* @description This is where all the commands are stored and loaded into runtime from.
* @note All commands must be entirely lower case.
*
* @variables:
* hidden - whether or not the command shows up in the /command list
* bare - whether or not the command can be accessed without an idetifier. ( ie / or *)
* pm - whether or not the command will be processed if it is PM'd to the bot [mPMSpeak must be enabled]
*/
global.mCommands = [
{
command: 'help',
callback: function (pUser, pText) {
Speak(pUser, mHelpMsg, SpeakingLevel.Misc, null, true);
},
requires: Requires.User,
hint: "Gives the users some pretty basic help and advice.",
bare: true,
pm: true
},
{
command: 'crash',
callback: function (pUser, pText) {
throw new Error('Crashing the bot.');
},
requires: Requires.Owner,
hint: "Crashes the bot. Don't do unless necessary."
},
{
command: 'ban',
callback: function (pUser, pText) {
var sSplit = pText.split(' ');
if(sSplit.length == 1) Ban(sSplit[0]);
else Ban(sSplit.shift(), sSplit.join(' '));
},
requires: Requires.Moderator,
hint: "Add a user to the ban list and kicks them from the room."
},
{
command: 'unban',
callback: function (pUser, pText) {
if(pText) Unban(pText);
},
requires: Requires.Moderator,
hint: "Removes a user from the ban list."
},
{
command: 'say',
callback: function (pUser, pText) {
mBot.speak(pText);
},
requires: Requires.Owner,
hint: "Makes the bot say something.",
pm: true,
bare: true
},
{
command: 'q+',
callback: function (pUser, pText) {
if(!mQueueCurrentlyOn) return Speak(pUser, mQueueOff, SpeakingLevel.Misc);
if(mDJs.indexOf(pUser.userid) != -1) {
Speak(pUser, mQueueAlreadyDJ, SpeakingLevel.Misc);
} else if(mQueue.indexOf(pUser.userid) != -1) {
Speak(pUser, mAlreadyInQueue, SpeakingLevel.Misc);
} else if(mDJs.length == mMaxDJs) {
QueuePush(pUser.userid);
Speak(pUser, mQueueAdded, SpeakingLevel.Misc);
} else Speak(pUser, mOpenSpotNoQueueing, SpeakingLevel.Misc);
},
requires: Requires.User,
hint: "Used to join the queue.",
bare: true,
hidden: true
},
{
command: 'q-',
callback: function (pUser, pText) {
if(mDJs.indexOf(pUser.userid) != -1) {
Speak(pUser, mQueueAlreadyDJ, SpeakingLevel.Misc);
} else if(mQueue.indexOf(pUser.userid) != -1) {
mQueue.splice(mQueue.indexOf(pUser.userid), 1);
Speak(pUser, mRemoveFromQueue, SpeakingLevel.Misc);
} else Speak(pUser, mNotInQueue, SpeakingLevel.Misc);
},
requires: Requires.User,
hint: "Used to remove from the queue.",
bare: true,
hidden: true
},
{
command: 'q',
callback: function (pUser, pText) {
if(!pText) {
if(!mQueueCurrentlyOn) return Speak(pUser, mQueueOff, SpeakingLevel.Misc);
else if(mQueue.length > 0) return Speak(pUser, mQueueUsers, SpeakingLevel.Misc);
else return Speak(pUser, mQueueEmpty, SpeakingLevel.Misc)
};
var sSplit = pText.split(' ');
var sArg = sSplit.shift();
var sVal = sSplit.join(' ');
if(sArg == 'remove') {
if(sVal == 'me') {
if(mDJs.indexOf(pUser.userid) != -1) {
return Speak(pUser, mQueueAlreadyDJ, SpeakingLevel.Misc);
} else if(mQueue.indexOf(pUser.userid) != -1) {
mQueue.splice(mQueue.indexOf(pUser.userid), 1);
return Speak(pUser, mRemoveFromQueue, SpeakingLevel.Misc);
} else return Speak(pUser, mNotInQueue, SpeakingLevel.Misc);
}
if(mQueue.length > 0 && (pUser.isMod)) {
if(!sVal) {
var sUser = mUsers[mQueue[0]];
Speak(sUser, mModRemoveFromQueue, SpeakingLevel.Misc);
mQueue.shift();
} else {
FindByName(sVal, function (sUser) {
for(var i = 0; i < sUser.length; ++i) {
if(mQueue.indexOf(sUser[i].userid) === -1) return;
if(sUser[i] == mUsers[mQueue[0]]) {
mQueue.shift();
return Speak(sUser[i], mModRemoveFromQueue, SpeakingLevel.Misc);
} else {
mQueue.splice(mQueue.indexOf(sUser[i].userid), 1);
return Speak(sUser[i], mModRemoveFromQueue, SpeakingLevel.Misc);
}
}
});
};
};
};
if(sArg == 'clear' && (pUser.isMod)){
mQueue = [];
mQueueNextUp = null;
return Speak (pUser, 'Queue Cleared', SpeakingLevel.Misc);
};
if(sArg == 'status'){
if(!mQueueCurrentlyOn) return Speak(pUser, mQueueOff, SpeakingLevel.Misc);
else if(mQueue.length > 0) return Speak(pUser, mQueueStatus, SpeakingLevel.Misc);
else return Speak(pUser, mQueueEmpty, SpeakingLevel.Misc)
};
if(sArg == 'add'){
if(!mQueueCurrentlyOn) return Speak(pUser, mQueueOff, SpeakingLevel.Misc);
if(mDJs.indexOf(pUser.userid) != -1) {
return Speak(pUser, mQueueAlreadyDJ, SpeakingLevel.Misc);
} else if(mQueue.indexOf(pUser.userid) != -1) {
return Speak(pUser, mAlreadyInQueue, SpeakingLevel.Misc);
} else if(mDJs.length == mMaxDJs) {
QueuePush(pUser.userid);
return Speak(pUser, mQueueAdded, SpeakingLevel.Misc);
} else return Speak(pUser, mOpenSpotNoQueueing, SpeakingLevel.Misc);
}
},
requires: Requires.User,
hint: "q add, q remove, q status",
bare: true
},
{
command: 'maul',
callback: function (pUser, pText) {
FindByName(pText, function (sUser) {
for(var i = 0; i < sUser.length; ++i)
mBot.remDj(sUser[i].userid);
});
},
requires: Requires.Moderator,
hint: "Remove a DJ"
},
{
command: 'gtfo',
callback: function (pUser, pText) {
FindByName(pText, function (sUser) {
if(sUser.length > 0) sUser = sUser[0];
mBot.bootUser(sUser.userid, "Not in my kitchen.");
});
},
requires: Requires.Moderator,
hint: "Boot a User"
},
{
command: 'slap',
callback: function (pUser, pText) {
FindByName(pText, function (sUser) {
if(sUser.length > 0) {
sUser = sUser[0];
Speak(sUser, '/me slaps {username}', SpeakingLevel.Misc);
}
});
},
requires: Requires.Moderator,
hint: "Slap a ho",
pm: true
},
{
command: 'stagedive',
message: ["{username} is surfing the crowd!", "Oops! {username} lost a shoe sufing the crowd.", "Wooo! {username}'s surfin' the crowd! Now to figure out where the wheelchair came from...", "Well, {username} is surfing the crowd, but where did they get a raft...", "{username} dived off the stage...too bad no one in the audience caught them.", "{username} tried to jump off the stage, but kicked their laptop. Ouch.", "{username} said they were going to do a stagedive, but they just walked off.", "And {username} is surfing the crowd! But why are they shirtless?", "{username} just traumatized us all by squashing that poor kid up front."],
callback: function (pUser, pText) {
if(mDJs.indexOf(pUser.userid) == -1) return;
var sMessage = mRandomItem(this.message);
Speak(pUser, sMessage, SpeakingLevel.Misc);
pUser.RemoveDJ();
},
requires: Requires.User,
hint: "Removes if DJ"
},
{
command: 'ragequit',
callback: function (pUser, pText) {
mBot.bootUser(pUser.userid, "Not in my kitchen.");
},
requires: Requires.User,
hint: "Remove self from room"
},
{
command: 'disable',
callback: function (pUser, pText) {
eval(pText + " = null");
},
requires: Requires.Owner,
hint: "Used to disable variables. Handle with care."
},
{
command: 'djs',
callback: function (pUser, pText) {
var sDJSongCount = [];
for(var sDJ in mDJs) {
var sUser = mUsers[mDJs[sDJ]];
sDJSongCount.push(sUser.name + ": " + sUser.songCount);
}
Speak(pUser, mCurrentDJSongCount, SpeakingLevel.Misc, [
['{djsandsongcount}', sDJSongCount.join(', ')]
]);
},
requires: Requires.User,
hint: "Tells the current song count for the DJs."
},
{
command: 'afks',
callback: function (pUser, pText) {
var sDJAfkCount = [];
for(var sDJ in mDJs) {
var sUser = mUsers[mDJs[sDJ]];
var sAfkTime = sUser.afkTime;
var sAge = Date.now() - sAfkTime;
var sAge_Minutes = Math.floor(sAge / 1000 / 60);
sDJAfkCount.push(sUser.name + ": " + sAge_Minutes + 'm');
}
Speak(pUser, mCurrentDJAfkCount, SpeakingLevel.Misc, [
['{djsandafkcount}', sDJAfkCount.join(', ')]
]);
},
requires: Requires.User,
hint: "Tells the current afk timer for the DJs."
},
{
command: 'commands',
callback: function (pUser, pText) {
var sCommands = [];
mCommands.forEach(function (pCommand) {
if(pCommand.requires.check(pUser) && !(pCommand.hidden)) sCommands.push(pCommand.command);
});
Speak(pUser, mCommandsList, SpeakingLevel.Misc, [
['{commands}', sCommands.join(', /')]
], true);
},
requires: Requires.User,
hint: "Tells what all the commands are.",
pm: true
},
{
command: 'theme',
callback: function (pUser, pText) {
Speak(pUser, mThemeIs, SpeakingLevel.Misc, null, true);
},
requires: Requires.User,
hint: "Tells what the theme is.",
bare: true,
pm: true
},
{
command: 'party',
message: 'Gimme a shot and clear the dance floor!!',
callback: function (pUser, pText) {
mBot.vote("up");
Speak(pUser, this.message, SpeakingLevel.Misc);
},
requires: mModBop ? Requires.Moderator : Requires.User,
hint: "Makes the bot dance." + (mModBop ? " Can not be done by regular users." : ""),
hidden: true
},
{
command: ['dance', 'bop'],
message: 'Bust a move!',
callback: function (pUser, pText) {
mBot.vote("up");
Speak(pUser, this.message, SpeakingLevel.Misc);
},
requires: mModBop ? Requires.Moderator : Requires.User,
hint: "Makes the bot dance." + (mModBop ? " Can not be done by regular users." : "")
},
{
command: 'hulk',
message: ['This is my favorite dubstep.', 'I just want to hump the speaker.'],
callback: function (pUser, pText) {
mBot.vote("up");
mBot.speak(mRandomItem(this.message));
},
requires: Requires.Moderator,
hint: "Makes the bot dance. Can not be done by regular users.",
hidden: true
},
{
command: 'moo',
callback: function (pUser, pText) {
Speak(pUser, "I'm not a cow, but oka-MOOOOO!", SpeakingLevel.Misc);
},
requires: Requires.User,
hint: "moo.",
hidden: true
},
{
command: 'pats',
callback: function (pUser, pText) {
Speak(pUser, "/me purrrrrrrrrrrrs", SpeakingLevel.Misc);
},
requires: Requires.User,
hint: "pats.",
hidden: true
},
{
command: 'order',
callback: function (pUser, pText) {
HandleMenu(pUser, pText);
},
requires: Requires.User,
hint: "Order something off the menu."
},
{
command: 'bootaftersong',
callback: function (pUser, pText) {
if(pUser.isDJ) {
pUser.bootAfterSong = true;
pUser.PM(mPMWillBootOffDeck, SpeakingLevel.Misc);
} else pUser.PM(mNotDJ, SpeakingLevel.Misc);
},
requires: Requires.User,
hint: "Removes the user from the deck after their song is over."
},
{
command: 'vip',
callback: function (pUser, pText) {
if(!pText) return;
var sSplit = pText.split(' ');
var sVar = sSplit.shift();
var sVal = sSplit.join(' ');
if (sVar == 'add') {
FindByName(sVal, function (sUser) {
if(sUser.length != 1) return;
sUser = sUser[0]
sUser.isVip = true;
Speak(sUser, mIsNowVIP, SpeakingLevel.Misc);
});
}
else if (sVar == 'remove'){
FindByName(sVal, function (sUser) {
sUser.isVip = false;
Speak(sUser, mIsNoLongerVIP, SpeakingLevel.Misc);
});
} else Speak(pUser, 'Useage: /vip add [user], /vip remove [user]', SpeakingLevel.Misc, null, true)
},
requires: Requires.Moderator,
hint: "Useage: /vip add [user], /vip remove [user]"
},
{
command: 'setvar',
callback: function (pUser, pText) {
if(!pText) return;
var sSplit = pText.split(' ');
var sVariable = sSplit.shift();
var sValue = sSplit.join(' ');
Log("Setting " + sVariable + " to have the value of " + sValue);
eval(sVariable + ' = ' + sValue);
},
requires: Requires.Owner,
hint: "Temporarily changes options",
hidden: true
},
{
command: 'disable',
callback: function (pUser, pText) {
eval(pText + " = null");
},
requires: Requires.Owner,
hint: "Used to disable variables. Handle with care.",
hidden:true
},
{
command: 'turn',
callback: function (pUser, pText) {
if(!pText) return;
var sSplit = pText.split(' ');
var sTxt = sSplit.shift();
var sArg = sSplit.join(' ');
var sVal = true;
var sVar;
if(sTxt == 'q' || sTxt == 'queue') {
sVar = 'mQueueOn';
mQueueCurrentlyOn = false;
if(sArg == 'on') mQueueCurrentlyOn = true;
} else if(sTxt == 'limit' || sTxt == 'songlimit') {
sVar = 'mLimitOn';
} else if(sTxt == 'lonely' || sTxt == 'lonelydj') {
sVar = 'mLonelyDJ';
} else if(sTxt == 'whitelist') {
sVar = 'mWhiteListEnabled';
} else if(sTxt == 'warn') {
sVar = 'mWarn';
} else {
return;
};
if (sArg == 'off') sVal = false;
Speak(pUser, "Turning " + sTxt + " " + sArg, SpeakingLevel.Misc, null, true);
eval(sVar + " = " + sVal);
mParsing['{queue}'] = mQueueOn ? "on" : "off";
mParsing['{queuecurrentlyon}'] = mQueueCurrentlyOn ? "on" : "off";
mParsing['{songlimitcurrentlyon}'] = mSongLimitCurrentlyOn ? "on" : "off";
},
requires: Requires.Owner,
hint: "Used to toggle variables. q, limit, lonelydj, whitelist, warn",
pm: true
},
{
command: 'set',
callback: function (pUser, pText) {
if(!pText) return;
var sSplit = pText.split(' ');
var sVariable = sSplit.shift();
var sValue = sSplit.join(' ');
var sVar;
if(sVariable == 'greet' || sVariable == 'greeting') sVar = 'mDefaultGreeting';
if(sVariable == 'theme') sVar = 'mTheme';
if(sVariable == 'help') sVar = 'mHelpMsg';
if(sVariable == 'limit' || sVariable == 'songlimit') sVar = 'mMaxSongs';
if(sVariable == 'wait' || sVariable == 'songwait') sVar = 'mWaitSongs';
if(sVariable == 'afk' || sVariable == 'afklimit') sVar = 'mAFK';
Log("Setting " + sVar + " to have the value of " + sValue);
Speak(pUser, "Setting " + sVariable + " to " + sValue, SpeakingLevel.Misc, null, true);
if(isNaN(sValue)) {
eval(sVar + ' = "' + sValue + '"');
} else {
eval(sVar + ' = ' + sValue);
}
mParsing['{theme}'] = mTheme;
mParsing['{songlimit}'] = mCurrentSongLimit;
mParsing['{afklimit}'] = mParsing['{afk}'] = mAFK;
mParsing['{songwait}'] = mWaitSongs;
},
requires: Requires.Owner,
hint: "Temporarily changes options: greet, theme, help, limit, wait, afk",
pm: true
},
{
command: 'userid',
callback: function (pUser, pText) {
if(pText) FindByName(pText, function (sUser) {
if(sUser && sUser.length) Speak(sUser[0], mTheirUserId, SpeakingLevel.Misc);
});
else pUser.PM(mYourUserId, SpeakingLevel.Misc);
},
requires: Requires.User,
hint: "PMs the caller their userid if no args, otherwise speaks the userid of the name of the person in the args."
},
{
command: 'whitelist',
callback: function (pUser, pText) {
if(!pText) return Speak(pUser, 'Useage: /whitelist add [user], /whitelist remove [user]', SpeakingLevel.Misc, null, true);
var sSplit = pText.split(' ');
var sArg = sSplit.shift();
var sVal = sSplit.join(' ');
if(sArg == 'add') {
if(mUsers[sVal.trim()]) {
var sUser = mUsers[sVal.trim()];
sUser.whiteList = true;
Speak(sUser, mAddedToWhiteList, SpeakingLevel.Misc);
sUser.Save();
} else FindByName(sVal, function (sUsers) {
for(var i = 0; i < sUsers.length; ++i) {
var sUser = sUsers[i];
sUser.whiteList = true;
sUser.Save();
Speak(sUser, mAddedToWhiteList, SpeakingLevel.Misc);
}
});
};
if(sArg == 'remove') {
if(mUsers[sVal.trim()]) {
var sUser = mUsers[sVal.trim()];
sUser.whiteList = false;
if(sUser.isDJ) sUser.RemoveDJ();
Speak(sUser, mRemovedFromWhiteList, SpeakingLevel.Misc);
} else FindByName(sVal, function (pUsers) {
for(var i = 0; i < pUsers.length; ++i) {
var sUser = pUsers[i];
sUser.whiteList = false;
if(sUser.isDJ) sUser.RemoveDJ();
sUser.Save();
Speak(sUser, mRemovedFromWhiteList, SpeakingLevel.Misc);
}
});
}
},
requires: Requires.Moderator,
hint: "Add/remove a user to the whitelist of DJs temporarily."
},
{
command: 'go',
callback: function (pUser, pText) {
if(!pText) return Speak(pUser, 'You must provide a room id.', SpeakingLevel.Misc, null, true);
if(pText == 'home') return mBot.roomRegister(mRoomId);
mNoGo = setTimeout(mGoHome, 15000);
Log('Registering in room ' + pText);
return mBot.roomRegister(pText);
},
requires: Requires.Owner,
hint: "Moves the bot from room to room"
},
{
command: 'hop',
callback: function (pUser, pText) {
if(mLonelyDJ) return Speak(pUser, "Sorry, I can't DJ with LonelyDJ enabled D:", SpeakingLevel.Misc, null, true);
if(!mBotDJ) return Speak(pUser, "Sorry, I don't know how to DJ.", SpeakingLevel.Misc, null, true);
if(pText == 'up' && mDJs.indexOf(mUserId) == -1) mBot.addDj();
if(pText == 'down' && mDJs.indexOf(mUserId) != -1) mBot.remDj(mUserId);
},
requires: Requires.Moderator,
hint: "Makes the bot DJ",
pm: true
},
{
command: 'song',
callback: function (pUser, pText) {
if(!pText) return Speak(pUser, 'Useage: /song add, /song remove, /song skip, /song next, /song total', SpeakingLevel.Misc, null, true);
if(pText == 'skip' && mCurrentDJ.userid == mUserId) return mBot.stopSong();
if(!mBotDJ) return Speak(pUser, "Sorry, I don't know how to DJ.", SpeakingLevel.Misc, null, true);
if(pText == 'skip' && mCurrentDJ.userid != mUserId) {
mBot.playlistAll(function (pData) {
if (pData.list.length == 0) return;
var i = pData.list.length - 1;
Speak(pUser, "Skipped '"+ pData.list[0].metadata.song + "'. Next Song: '" + pData.list[1].metadata.song + "' Type /song requeue to undo.", SpeakingLevel.Misc, null, true)
return mBot.playlistReorder(0, i);
});
};
if(pText =='requeue'){
mBot.playlistAll(function (pData) {
if (pData.list.length == 0) return;
var i = pData.list.length - 1;
mBot.playlistReorder(i, 0);
return Speak(pUser, "Moved "+ pData.list[i].metadata.song + ". to the top of the queue.", SpeakingLevel.Misc, null, true)
});
};
if(pText == 'shuffle') {
var sTotal = [];
mBot.playlistAll(function (pData){
for(var i = 0; i < pData.list.length; ++i) {
sTotal[i] = i;
}
var sRand = mShuffle(sTotal);
for(var i = 0; i < pData.list.length; ++i) {
mBot.playlistReorder(i, sRand[i]);
}
return Speak(pUser, "Shuffled Queue.", SpeakingLevel.Misc, null, true);
});
};
if(pText == 'add') {
mBot.playlistAll(function (pData) {
mBot.playlistAdd(mCurrentSong.songId, pData.list.length);
return Speak(pUser, "Added " + mCurrentSong.songName + " to queue!", SpeakingLevel.Misc);
});
};
if(pText == 'remove') {
if(mCurrentDJ.userid != mUserId) return Speak(pUser, "You can only remove a song when I'm playing a song.", SpeakingLevel.Misc, null, true);
mBot.playlistAll(function (pData) {
if(pData.list.length == 0) return;
var i = pData.list.length - 1;
mBot.stopSong();
Speak(pUser, 'Removing ' + pData.list[i].metadata.song, SpeakingLevel.Misc, null, true);
return mBot.playlistRemove(i);
});
};
if(pText == 'next') {
mBot.playlistAll(function (pData) {
if(pData.list.length == 0) return;
return Speak(pUser, 'Next song: ' + pData.list[0].metadata.song + ' by ' + pData.list[0].metadata.artist, SpeakingLevel.Misc, null, true)
});
};
if(pText == 'total') {
mBot.playlistAll(function (pData) {
if(pData.list.length == 0) return;
return Speak(pUser, 'Total Songs In My Queue: ' + pData.list.length, SpeakingLevel.Misc)
});
}
},
requires: Requires.Moderator,
hint: "song skip (skips song), song add (adds current song to queue), song remove (removes last played song from queue), song next (lists next song), song total (total songs in queue).",
pm: true
},
{
command: 'refresh',
callback: function (pUser, pText) {
if(!pUser.isDJ) {
pUser.PM(mNotDJ, SpeakingLevel.Misc);
return;
}
if(!pUser.allowedToReserveSpot) return
var sTime = Date.now();
var sHold = {
userid: pUser.userid,
time: sTime
};
var sIndex = mReservedSpots.push(sHold) - 1;
setTimeout(function () {
sIndex = mReservedSpots.indexOf(sHold);
if(sIndex != -1) mReservedSpots.splice(sIndex, 1);
}, mHoldSpotForRefreshTime * 1000);
pUser.PM(mReadyRefresh, SpeakingLevel.Misc);
pUser.RemoveDJ();
},
requires: Requires.User,
hint: "Lets the user refresh and the bot will hold their spot for " + mHoldSpotForRefreshTime + " minutes."
},
{
command: 'status',
callback: function (pUser, pText) {
var sLimit = mLimitOn;
if (mLimitOn) sLimit = mMaxSongs;
Speak(pUser, 'Theme: ' + mTheme + ', AFK Limit: ' + mAFK + ', Song Limit: ' + sLimit + ', Song Wait: ' + mWaitSongs + ', Queue: ' + mQueueOn + ', LonelyDJ: ' + mLonelyDJ + '.', SpeakingLevel.Misc, null, true);
},
requires: Requires.User,
hint: "Shows the bot status.",
pm: true
},
{
command: 'i',
callback: function (pUser, pText) {
if(pUser.totalSongCount < 1) return Speak(pUser, "I don't know you yet, {username}. Stay a while, play some songs.", SpeakingLevel.Misc)
Speak(pUser, "{username}'s hearts: {heart_count}, hearts given: {given_count}, total songs: {total_songs}, Heart Percentage: {heart_percentage}%", SpeakingLevel.Misc, [
['{heart_count}', pUser.totalHeartCount],
['{given_count}', pUser.totalHeartsGiven],
['{total_songs}', pUser.totalSongCount],
['{heart_percentage}', mRound(pUser.totalHeartCount / pUser.totalSongCount * 100, 2)]
])
},
requires: Requires.User,
hint: "All bout you"
}];