forked from GiorgioBrux/nitro-sniper-enhanced
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
73 lines (73 loc) · 2.88 KB
/
app.json
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
{
"name": "Nitro Sniper Enhanced",
"description": "A nitro sniper for discord.",
"repository": "https://github.com/giorgiobrux/nitro-sniper-enhanced",
"logo": "https://discord.com/assets/2c21aeda16de354ba5334551a883b481.png",
"env": {
"mainToken": {
"description": "Your main account's token, used for redeeming the gift.",
"required": true
},
"guildTokens": {
"description": "Your alt accounts tokens. Required if useMain is set to false. (Split multiple tokens with \",\")",
"required": false
},
"nitro_webhookUrl": {
"description": "Put here your webhook url if you wish to receive messages when a gift is redeemed.",
"required": false
},
"notes_webhookUrl": {
"description": "Put here your webhook url if you wish to receive messages when notes are sniped.",
"required": false
},
"useMain": {
"description": "Do you want to use your main token for sniping?",
"required": true,
"value": "false"
},
"legitimacyCheck": {
"description": "Does some magic to check if the code could be legitimate but will slow the sniper down",
"required": true,
"value": "true"
},
"obfuscationCheck": {
"description": "Does some magic to remove obfuscation from codes but will slow the sniper down",
"required": true,
"value": "true"
},
"notesCheck": {
"description": "Does some magic to check for privnotes link. Little performance impact. IMPORTANT: This will snipe all privnote links (except your own) and destroy them!",
"required": true,
"value": "true"
},
"writeNotes": {
"description": "Whether you want all sniped notes to be written in the ./notes folder. Doesn't slow the sniper down.",
"required": true,
"value": "true"
},
"tokenStatus": {
"description": "The status of guildTokens: {online, idle, invisible, dnd}",
"required": true,
"value": "online"
},
"mainStatus": {
"description": "The status of your main token: {online, idle, invisible, dnd}. useMain must be set to true or this is useless. This status will be overwritten by other discord clients.",
"required": false,
"value": "invisible"
},
"permanentCache": {
"description": "Cache usedTokens to disk. No performance impact but will increase the memory used.",
"required": true,
"value": "false"
},
"webhookping_userid": {
"description": "If set will ping the userid in the nitro_webhook (i.e. upon successful sniping).",
"required": false
},
"replit": {
"description": "Set to true only if you are running the sniper on repl.it.",
"required": true,
"value": "false"
}
}
}