This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
forked from Barsonvenus/Memories-of-Self-Care-and-Literature
-
Notifications
You must be signed in to change notification settings - Fork 2
/
SCLwindowreacts.rpy
343 lines (308 loc) · 9.27 KB
/
SCLwindowreacts.rpy
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_granblue",
category=["Granblue Fantasy"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_granblue:
$ wrs_success = mas_display_notif(
m_name,
[
"如果你想要个好运, 想一想我, 我就会把我的好运送给你~",
"哇偶... 所以这就是那个传说中的岛... 哈哈哈!"
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_granblue')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_forum",
category=["Forum", "Forums"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_forum:
$ wrs_success = mas_display_notif(
m_name,
[
"不知道大家在聊些什么?",
"你觉得今天会有人讨论文学部吗?"
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_forum')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_XIV",
category=["FFXIVLauncher", "ffxiv_dx11.exe", "FINAL FANTASY XIV", "Final Fantasy XIV", "Endwalker", "Stormblood", "Shadowbringers"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_XIV:
$ wrs_success = mas_display_notif(
m_name,
[
"倾听我的声音。倾听我们的心跳声。倾听...",
"听。感。悟...",
"让广袤变得狭小,让永恒变成瞬间..."
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_XIV')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_mangadex",
category=["- MangaDex"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_mangadex:
$ wrs_success = mas_display_notif(
m_name,
[
"夏树应该会喜欢这个网站!",
"今天想读什么呢, [player]?",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_mangadex')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_gmail",
category=["Gmail"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_gmail:
$ wrs_success = mas_display_notif(
m_name,
[
"我才不会偷偷看你看邮件呢~",
"嗯...我在想我能用电子邮件吗?",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_gmail')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_stardew",
category=["Stardew Valley"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_stardew:
$ wrs_success = mas_display_notif(
m_name,
[
"一起在农场生活,不是很美妙吗?",
"等等[mas_get_player_nickname()], 别和山谷里的邻居们太亲近了... ",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_stardew')
return
#CONSULT SYSADMIN IF MAKING CHANGES TO ACTUALIZATION FILTER. ANY CHANGES ARE LOGGED AND INAPPOPRIATE USAGE WILL RESULT IN DISCINPLINARY ACTION BY YOUR SUPERIOR INCLUDING POSSIBLE IMMEDIATE TERMINATION
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_actualizationfilterplus",
category=["Doki Doki Literature Club Plus!", "Doki Doki Literature Club Plus", "Doki Doki Literature Club Plus ", "Doki Doki Literature Club Plus! ", "Doki Doki Literature Club Plus! - "],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_actualizationfilterplus:
$ wrs_success = mas_display_notif(
m_name,
[
"嗯? [player], 你的屏幕怎么扭曲了? 一定是坏了.",
"呃呃, 我有点看不清这些字. 你要去解决一下!",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_actualizationfilterplus')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_arknights",
category=["Arknights"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_arknights:
$ wrs_success = mas_display_notif(
m_name,
[
"今天做什么呢, 博士?",
"只要有你在, 我的理智值永远是满的~",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_arknights')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_yakuza",
category=["Yakuza Kiwami", "Yakuza Kiwami 2", "Yakuza: Like a Dragon"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_yakuza:
$ wrs_success = mas_display_notif(
m_name,
[
"喵哈哈! [player]酱!",
"文学部的妈妈兼部长",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_yakuza')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_fnf",
category=["Friday Night Funkin", "Friday Night Funkin'", "Doki Doki Takeover!"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_fnf:
$ wrs_success = mas_display_notif(
m_name,
[
"星期五晚上,狂欢到天明,yeah~",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_fnf')
return
init 5 python:
addEvent(
Event(
persistent._mas_windowreacts_database,
eventlabel="mas_wrs_halo",
category=["Halo Infinite", "Halo 2," "Halo 3," "Halo 4," "Halo 5: Guardians"],
rules={
"notif-group": "Window Reactions",
"skip alert": None,
"keep_idle_exp": None,
"skip_pause": None
},
show_in_idle=True
),
code="WRS"
)
label mas_wrs_halo:
$ wrs_success = mas_display_notif(
m_name,
[
"不要给女孩许下无法兑现的承诺哦~",
],
'Window Reactions'
)
if not wrs_success:
$ mas_unlockFailedWRS('mas_wrs_halo')
return