-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtriggers.json5
More file actions
74 lines (74 loc) · 2.56 KB
/
triggers.json5
File metadata and controls
74 lines (74 loc) · 2.56 KB
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
{
"commands": [
{
"name": ["cracked", "offline"],
"description": "No cracked Minecraft >:(",
"reply": {
"embeds": [{
"title": "Cracked Minecraft",
"description": "Playing under a cracked user is not supported nor in the launcher, you cannot do this without a modified version of the launcher which we do not endorse.\n\nIf you would like to play without an account, you can use demo mode to try the experience before considering a purchase.",
"color": 0xED4245
}]
}
},
{
"name": "mods",
"description": "How to install mods.",
"reply": {
"embeds": [{
"title": "How to install mods",
"description": "Please for the love of god just use mod manager :sob:",
"color": 0x12E65C
}]
}
},
{
"name": "eta",
"description": "When will this happen??????????",
"reply": {
"content": "Between now, and the year 3000.",
"embeds": [{
"title": "We do not provide ETAs.",
"description": "We don't know when something is gonna happen if we haven't said it, please just be patient :3",
"color": 0x1088EB
}]
}
},
{
"test": true,
"name": "test",
"description": "The Test Command.",
"reply": {
"content": "Test test, 1 2, 1 2.",
"embeds": [{
"title": "This is the Test Embed",
"description": "Spooky, I know.",
"color": 0xB515D1
}],
},
"replyButtons": [{
"id": "test_button",
"label": "Test Button",
"type": "primary"
}]
}
],
"buttons": [
{
"id": "test_button",
"reply": {
"content": "You activated my trap card!",
"embeds": [{
"title": "This is the Test Embed, embedded in a button!",
"description": "Buttons, scary stuff, really. ;-;",
"color": 0xB515D1
}]
},
"replyButtons": [{
"id": "test_button",
"label": "Test Button (Repeat)",
"type": "danger"
}]
}
]
}