forked from ImpactDevelopment/ImpactBot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreplies.js
More file actions
65 lines (64 loc) · 3 KB
/
replies.js
File metadata and controls
65 lines (64 loc) · 3 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
const channels = require('./channels');
module.exports = [
{
pattern: /forge/,
message: 'Use the [installer](https://impactdevelopment.github.io) to install Forge (1.12.2 only)'
},
{
pattern: /faq/,
message: '[Setup/Install FAQ](https://github.com/impactdevelopment/impactclient/wiki/Setup-FAQ)\n[Usage FAQ](https://github.com/impactdevelopment/impactclient/wiki/Usage-FAQ)'
},
{
pattern: /installer|mediafire|dire(c|k)+to?\s+(linko?|url|site|page)|adf\.?ly|(ad|u)\s?block/,
message: '[Direct download link after adfly](https://impactdevelopment.github.io/?brady-money-grubbing-completed=true)'
},
{
pattern: /lite\s*loader/,
message: '[LiteLoader tutorial](https://github.com/ImpactDevelopment/ImpactClient/wiki/Adding-LiteLoader)',
},
{
pattern: /(web\s?)?(site|page)/,
message: '[Website](https://impactdevelopment.github.io)'
},
{
pattern: /issue|bug|crash|error|suggest(ion)?s?|feature|enhancement/,
message: 'Use the [GitHub repo](https://github.com/ImpactDevelopment/ImpactClient/issues) to report issues/suggestions!'
},
{
pattern: /help|support/,
message: 'Switch to the <#' + channels.help + '> channel!',
exclude: [channels.help]
},
{
pattern: /what(\sdoes|\sis|s|'s)?\s+franky/,
message: 'It does exactly what you think it does.'
},
{
pattern: /opti\s*fine/,
message: 'Use the installer to add OptiFine to Impact!\n[Old tutorial](https://www.youtube.com/watch?v=o1LHq6L0ibk). [Text instructions](https://github.com/ImpactDevelopment/ImpactClient/wiki/Adding-OptiFine)'
},
{
pattern: /directlinktomanualjsoninstallation/,
message: '[4.2](https://www.mediafire.com/file/ziqx4m44zkgj1ye/Impact+4.2+for+Minecraft+1.12.2.zip) | [4.3](https://www.mediafire.com/file/9ujvsouklxoq5hj/Impact+4.3+for+Minecraft+1.12.2.zip) | [4.4](https://www.mediafire.com/file/l7brss1f228so0p/Impact+4.4+for+Minecraft+1.12.2.zip) | [4.5](https://www.mediafire.com/file/a9srjpjfb4uppqj/Impact+4.5+for+Minecraft+1.12.2.zip). | [4.6 1.12.2](http://www.mediafire.com/file/2ud3yig0i8i8p63/Impact+4.6+for+Minecraft+1.12.2.zip) | [4.6 1.13.2](https://www.mediafire.com/file/ccjf2xs8veokkc9/Impact+4.6+for+Minecraft+1.13.2.zip)'
},
{
pattern: /macros?/,
message: 'You can edit macros in-game, click Impact Button then Macros.'
},
{
pattern: /change(\s*logs?|s)/,
message: '[Changelog](https://impactdevelopment.github.io/changelog)'
},
{
pattern: /hack(s|ing|er|client)?/,
message: 'Please do not discuss hacks in this Discord.'
},
{
pattern: /premium|donate|become\s*a?\s+don(at)?or/,
message: 'If you donate $5 or more, you will recieve 1 premium mod (Ignite), a cape visible to other Impact users, a gold colored name in the Impact Discord Server, access to #donator-help (with faster and nicer responses), and access to closed betas of upcoming releases. Go on the website to donate.'
},
{
pattern: /1\.14/,
message: 'No release date for 1.14, developing will begin when mappings are released!'
}
];