check personal location feature
This commit is contained in:
2 files changed
+49
-1
No files matched your search
@@ -0,0 +1,48 @@
|
|||||||
|
const { EmbedBuilder } = require('discord.js');
|
||||||
|
const bitfieldCalculator = require('discord-bitfield-calculator');
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
name: "location",
|
||||||
|
debug: false,
|
||||||
|
global: false,
|
||||||
|
description: "Find your last known location",
|
||||||
|
usage: "",
|
||||||
|
permissions: {
|
||||||
|
channel: ["VIEW_CHANNEL", "SEND_MESSAGES", "EMBED_LINKS"],
|
||||||
|
member: [],
|
||||||
|
},
|
||||||
|
SlashCommand: {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {require("../structures/QuarksBot")} client
|
||||||
|
* @param {import("discord.js").Message} message
|
||||||
|
* @param {string[]} args
|
||||||
|
* @param {*} param3
|
||||||
|
*/
|
||||||
|
run: async (client, interaction, args, { GuildDB }) => {
|
||||||
|
|
||||||
|
if (!client.exists(GuildDB.playerstats)) {
|
||||||
|
GuildDB.playerstats = [{}];
|
||||||
|
client.dbo.collection("guilds").updateOne({ "server.serverID": GuildDB.serverID }, {
|
||||||
|
$set: {
|
||||||
|
"server.playerstats": []
|
||||||
|
}
|
||||||
|
}, function (err, res) {
|
||||||
|
if (err) return client.sendInternalError(interaction, err);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let playerStat = GuildDB.playerstats.find(stat => stat.discordID == interaction.member.userID );
|
||||||
|
if (playerStat == undefined) return interaction.send({ embeds: [new EmbedBuilder().setColor(client.config.Colors.Yellow).setDescription(`**Not Found** You haven't linked your gamertag and are unable to use this command.`)] });
|
||||||
|
|
||||||
|
let newDt = await client.getDateEST(playerStat.time);
|
||||||
|
let unixTime = Math.floor(newDt.getTime()/1000);
|
||||||
|
|
||||||
|
let lastLocation = new EmbedBuilder()
|
||||||
|
.setColor(client.config.Colors.Default)
|
||||||
|
.setDescription(`**Location - <t:${unixTime}>**\nYour last location was detected at **[${playerStat.pos[0]}, ${playerStat.pos[1]}](https://www.izurvive.com/chernarusplussatmap/#location=${data.pos[0]};${data.pos[1]})**`)
|
||||||
|
|
||||||
|
return interaction.send({ embeds: [lastLocation], flags: (1 << 6) });
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dayz-armbands",
|
"name": "dayz-armbands",
|
||||||
"version": "8.1.3",
|
"version": "8.2.0",
|
||||||
"description": "A General Purpose Discord Bot for DayZ Servers.",
|
"description": "A General Purpose Discord Bot for DayZ Servers.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"nodemonConfig": {
|
"nodemonConfig": {
|
||||||
|
|||||||
Reference in new issue
Block a user