This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
/
index.js
50 lines (41 loc) · 2.39 KB
/
index.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
//Dependencies
const Request = require("request")
//Variables
const Self_Args = process.argv.slice(2)
//Main
if(!Self_Args.length){
console.log(`node index.js <discord_token> <channel_id> <user_id> <message>
Example: Above me.`)
process.exit()
}
if(!Self_Args[0]){
console.log("Invalid discord_token.")
process.exit()
}
if(!Self_Args[1]){
console.log("Invalid channel_id.")
process.exit()
}
if(!Self_Args[2]){
console.log("Invalid user_id.")
process.exit()
}
if(!Self_Args[3]){
console.log("Invalid message.")
process.exit()
}
var Payload = ""
Payload = `${Self_Args.slice(3).join(" ")}:sunglasses: ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||<@${Self_Args[2]}>`
Request.post(`https://discordapp.com/api/v6/channels/${Self_Args[1]}/messages`, {
headers: {
"Content-Type": "application/json",
"Authorization": Self_Args[0]
},
body: JSON.stringify({ "content": Payload })
},function(err, res, body){
if(err){
console.log(err)
process.exit()
}
console.log("Payload successfully sent.")
})