fix some emote commands

master
Kit Kasune 3 years ago
parent d65df90389
commit 4181a315cc
  1. 32
      .idea/workspace.xml
  2. 2
      commands/social/angry.js
  3. 2
      commands/social/blush.js
  4. 4
      commands/social/bonk.js
  5. 4
      commands/social/creampie.js
  6. 2
      commands/social/dance.js
  7. 2
      commands/social/dodge.js
  8. 6
      commands/social/feed.js
  9. 4
      commands/social/fuck.js
  10. 4
      commands/social/handhold.js
  11. 4
      commands/social/heal.js
  12. 4
      commands/social/kill.js
  13. 2
      commands/social/laugh.js
  14. 2
      commands/social/run.js
  15. 6
      commands/social/simp.js
  16. 2
      commands/social/smile.js
  17. 2
      commands/social/spank.js
  18. 4
      commands/social/wink.js

@ -4,12 +4,10 @@
<option name="autoReloadType" value="SELECTIVE" /> <option name="autoReloadType" value="SELECTIVE" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="826c705b-a7fa-4ece-b82a-e278fca7d494" name="Changes" comment=""> <list default="true" id="826c705b-a7fa-4ece-b82a-e278fca7d494" name="Changes" comment="e">
<change afterPath="$PROJECT_DIR$/slash/userinfo.js.dev" afterDir="false" /> <change afterPath="$PROJECT_DIR$/slash/userinfo.js.dev" afterDir="false" />
<change afterPath="$PROJECT_DIR$/slashtemplate.js" afterDir="false" /> <change afterPath="$PROJECT_DIR$/slashtemplate.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/commands/social/fuck.js" beforeDir="false" afterPath="$PROJECT_DIR$/commands/social/fuck.js" afterDir="false" />
<change beforePath="$PROJECT_DIR$/events/guildMemberRemove.js" beforeDir="false" afterPath="$PROJECT_DIR$/events/guildMemberRemove.js" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -81,8 +79,30 @@
<workItem from="1640124257973" duration="3978000" /> <workItem from="1640124257973" duration="3978000" />
<workItem from="1640131913922" duration="1135000" /> <workItem from="1640131913922" duration="1135000" />
<workItem from="1640142319793" duration="749000" /> <workItem from="1640142319793" duration="749000" />
<workItem from="1640147904557" duration="718000" /> <workItem from="1640147904557" duration="2860000" />
</task> </task>
<task id="LOCAL-00001" summary="not even gonna explain">
<created>1640148826800</created>
<option name="number" value="00001" />
<option name="presentableId" value="LOCAL-00001" />
<option name="project" value="LOCAL" />
<updated>1640148826800</updated>
</task>
<task id="LOCAL-00002" summary="stoopid errors">
<created>1640149043611</created>
<option name="number" value="00002" />
<option name="presentableId" value="LOCAL-00002" />
<option name="project" value="LOCAL" />
<updated>1640149043611</updated>
</task>
<task id="LOCAL-00003" summary="e">
<created>1640206937172</created>
<option name="number" value="00003" />
<option name="presentableId" value="LOCAL-00003" />
<option name="project" value="LOCAL" />
<updated>1640206937172</updated>
</task>
<option name="localTasksCounter" value="4" />
<servers /> <servers />
</component> </component>
<component name="TypeScriptGeneratedFilesManager"> <component name="TypeScriptGeneratedFilesManager">
@ -102,5 +122,9 @@
</component> </component>
<component name="VcsManagerConfiguration"> <component name="VcsManagerConfiguration">
<option name="ADD_EXTERNAL_FILES_SILENTLY" value="true" /> <option name="ADD_EXTERNAL_FILES_SILENTLY" value="true" />
<MESSAGE value="not even gonna explain" />
<MESSAGE value="stoopid errors" />
<MESSAGE value="e" />
<option name="LAST_COMMIT_MESSAGE" value="e" />
</component> </component>
</project> </project>

@ -24,7 +24,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new angry GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new angry GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,7 +23,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new sip GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new sip GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -24,7 +24,7 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Give them one with \`${prefix}bonk @${message.member.displayName}\`!`) .setDescription(`Give them one with \`${prefix}bonk @${message.member.displayName}\`!`)
.setColor('dda0dd') .setColor('dda0dd')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "I fucking dare you to hit me." : "I fucking dare you to hit me."
);} );}
@ -48,7 +48,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new bonk GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new bonk GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,7 +23,7 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Help with their..ahem..problem..with \`${prefix}creampie @${name}\`!`) .setDescription(`Help with their..ahem..problem..with \`${prefix}creampie @${name}\`!`)
.setColor('fffdd0') .setColor('fffdd0')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "Do. Not. Touch. Me." : "Do. Not. Touch. Me."
);} );}
@ -42,7 +42,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new creampie GIFs.");} if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new creampie GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -24,7 +24,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new dance GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new dance GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -24,7 +24,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new smile GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new smile GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,12 +23,12 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Bless someone with some food with \`${prefix}feed @${name}\`!`) .setDescription(`Bless someone with some food with \`${prefix}feed @${name}\`!`)
.setColor('bb0a1e') .setColor('bb0a1e')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "Sorry..I'm kinda full right now." : "Sorry..I'm kinda full right now."
);} );}
if (mention && args[0].match(/^<@(?:!?)(?:\d+)>$/)) { if (mention && args[0].match(/^<@(?:!?)(?:\d+)>$/)) {
if (!message.guild) {return message.reply("Only Crescent can feed me sorry.");} if (!message.guild) {return message.reply("weirdchamp.");}
if (!message.guild.members.cache.has(mention.id)) {return message.reply("I guess that person didn't want any food..");} if (!message.guild.members.cache.has(mention.id)) {return message.reply("I guess that person didn't want any food..");}
if (message.author.id === mention.id) {return message.reply("You can't feed yourself. **Starve.**");} if (message.author.id === mention.id) {return message.reply("You can't feed yourself. **Starve.**");}
let name = message.guild ? message.member.displayName : message.author.username; let name = message.guild ? message.member.displayName : message.author.username;
@ -42,7 +42,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new feeding GIFs.");} if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new feeding GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -24,7 +24,7 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Show them some love with \`${prefix}fuck @${message.member.displayName}\`!`) .setDescription(`Show them some love with \`${prefix}fuck @${message.member.displayName}\`!`)
.setColor('dda0dd') .setColor('dda0dd')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "You can't bang me.......only Wubzy can." : "You can't bang me.......only Wubzy can."
);} );}
@ -58,7 +58,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new bang GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new bang GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,7 +23,7 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Let them know you love them with \`${prefix}handhold @${name}\`!`) .setDescription(`Let them know you love them with \`${prefix}handhold @${name}\`!`)
.setColor('328ba8') .setColor('328ba8')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "Yikes... I'm kinda germaphobic you know. Maybe try asking in a server?" : "Yikes... I'm kinda germaphobic you know. Maybe try asking in a server?"
);} );}
@ -42,7 +42,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new kiss GIFs.");} if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new kiss GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,7 +23,7 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Lend them some help with \`${prefix}heal @${name}\`!`) .setDescription(`Lend them some help with \`${prefix}heal @${name}\`!`)
.setColor('ffc0cb') .setColor('ffc0cb')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "I am immortal, I don't need healing." : "I am immortal, I don't need healing."
);} );}
@ -42,7 +42,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new winking GIFs.");} if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new winking GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,7 +23,7 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Brutally murder someone with \`${prefix}kill @${name}\`!`) .setDescription(`Brutally murder someone with \`${prefix}kill @${name}\`!`)
.setColor('bb0a1e') .setColor('bb0a1e')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "You can't kill me..don't even try." : "You can't kill me..don't even try."
);} );}
@ -42,7 +42,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new winking GIFs.");} if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new winking GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -24,7 +24,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new laugh GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new laugh GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -24,7 +24,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new running GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new running GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,12 +23,12 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Fall madly in love with someone with \`${prefix}simp @${name}\`!`) .setDescription(`Fall madly in love with someone with \`${prefix}simp @${name}\`!`)
.setColor('ffb6c1') .setColor('ffb6c1')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "Nobody simps for me. That's just weird. Be weird to someone else." : "Nobody simps for me. That's just weird. Be weird to someone else."
);} );}
if (mention && args[0].match(/^<@(?:!?)(?:\d+)>$/)) { if (mention && args[0].match(/^<@(?:!?)(?:\d+)>$/)) {
if (!message.guild) {return message.reply("Only my mommy Crescent can simp for me.");} if (!message.guild) {return message.reply("Listen I get it I get it you like me and all but I'm gonna have to get a restraining order real soon.");}
if (!message.guild.members.cache.has(mention.id)) {return message.reply("They already left you. Get over it.");} if (!message.guild.members.cache.has(mention.id)) {return message.reply("They already left you. Get over it.");}
if (message.author.id === mention.id) {return message.reply("You can't simp for yourself you lonely fuck.");} if (message.author.id === mention.id) {return message.reply("You can't simp for yourself you lonely fuck.");}
let name = message.guild ? message.member.displayName : message.author.username; let name = message.guild ? message.member.displayName : message.author.username;
@ -42,7 +42,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new simping GIFs.");} if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new simping GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -24,7 +24,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new smile GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new smile GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -39,7 +39,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new spank GIFs.");} if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new spank GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

@ -23,7 +23,7 @@ module.exports = {
.setThumbnail(message.author.avatarURL({size: 2048})) .setThumbnail(message.author.avatarURL({size: 2048}))
.setDescription(`Give them a little wink with \`${prefix}wink @${name}\`!`) .setDescription(`Give them a little wink with \`${prefix}wink @${name}\`!`)
.setColor('8a2be2') .setColor('8a2be2')
.setFooter('Luno', client.user.avatarURL()) .setFooter('Natsuki', client.user.avatarURL())
.setTimestamp()]} .setTimestamp()]}
: "W-why are you winking at me privately..do it in a server! " : "W-why are you winking at me privately..do it in a server! "
);} );}
@ -42,7 +42,7 @@ module.exports = {
if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) {
if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');}
let tu = await UserData.findOne({uid: message.author.id}); let tu = await UserData.findOne({uid: message.author.id});
if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Luno Developer in order to add new winking GIFs.");} if ((!tu || !tu.developer) && !client.developers.includes(message.author.id) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new winking GIFs.");}
let e = true; let e = true;
let id; let id;
while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}}

Loading…
Cancel
Save