Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/commands/born.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
const moment = require('moment');
const scoring = require('../scoring');

function docs() {
/**
** when: ** Time of birth and no. of years since birth are returned
*/
}

function when(msg) {
var id = msg.author.id;
var bin = (+id).toString(2);
Expand All @@ -18,4 +24,4 @@ function when(msg) {

module.exports = {
when: when
};
};
11 changes: 11 additions & 0 deletions src/commands/please.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
const scoring = require('../scoring');

function docs(){
/**
** slap bear slap me gif ** : 'please get me out of sad'
** Killed Em Hold This gif ** : 'please get me out of happy'
** Self patting gif ** : 'please give me pats'
** Ghost hug gif ** : 'please give me hugs'
** Bear wiping tears gif ** : 'no tears please'
** Bee yourself - you matter image ** : 'please give good vibes'
**/

}
function command(msg) {
switch (msg.content.toLowerCase()) {
case "please get me out of sad":
Expand Down