forked from ForestB0T/ForestBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatterns.json
More file actions
135 lines (134 loc) · 4.89 KB
/
patterns.json
File metadata and controls
135 lines (134 loc) · 4.89 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"patterns": [
{
"name": "chat",
"regex": "^<([^ ]*)> (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperTo",
"regex": "^\\[MSG\\] me -> ([^ ]*): (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperFrom",
"regex": "^\\[MSG\\] ([^ ]*) -> me: (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperTo",
"regex": "^You whisper to ([^ ]*): (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperTo",
"regex": "^\\[me -> ([^ ]*)\\] (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperFrom",
"regex": "^([^ ]*) whispers to you: (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperFrom",
"regex": "^\\[([^ ]*) -> me\\] (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperFrom",
"regex": "^([^ ]*) whispers: (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperTo",
"regex": "^\\[You -> ([^ ]*)\\] (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "whisperFrom",
"regex": "^\\[([^ ]*) -> You\\] (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^([^ ]*): (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "([^ ]*) » (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^([^ ]*) > (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Jr MOD\\] ([^ ]*) ✪ > (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Mod\\] ([^ ]*) » (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Mod\\] ([^ ]*) ✪ > (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Discord\\] ([^ ]*) > (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Discord\\] ([^ ]*) » (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[SR-Mod\\] ([^ ]*) » (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Discord\\] \\[Mod\\] ([^ ]*) > (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Discord\\] \\[Donator\\] ([^ ]*) > (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Discord\\] \\[Nitro Booster\\] ([^ ]*) > (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[Discord\\] ([^ ]*)» (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "chat",
"regex": "^\\[YouTube\\] ([^ ]*) » (.*)$",
"options": { "parse": true, "repeat": true }
},
{
"name": "pvpMessages",
"regex": "^([^ ]*) (?:was slain by|was burnt to a crisp while fighting|was killed by magic whilst trying to escape|drowned whilst trying to escape|experienced kinetic energy whilst trying to escape|was shot by|was blown up by|hit the ground too hard whilst trying to escape|was killed trying to hurt|tried to swim in lava to escape) ([^ ]*)",
"options": { "parse": false, "repeat": true }
},
{
"name": "pveMessages",
"regex": "^([^ ]*) (?:died|tried to swim in lava|withered away whilst fighting|was pricked to death|Was killed by nature|drowned|blew up|was killed by|fell out of the world|hit the ground too hard|experienced kinetic energy|fell from a high place|fell off a ladder|fell while climbing|went up in flames|burned to death|was struck by lightning|was killed by magic|starved to death|was stung to death|suffocated in a wall|withered away|froze to death|went off with a bang)$",
"options": { "parse": false, "repeat": true }
}
]
}