-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhook_config.sample.php
41 lines (41 loc) · 1.34 KB
/
webhook_config.sample.php
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
<?php
$webhook_config = array(
"new_game" => array(
"threads" => true,
"allowed_mentions" => array(
"parse" => ["roles"],
"roles" => ["1225836017974509600"]
),
"tags" => array(
"engine" => array(
ENGINE_RPG2K => "1316979582242521109",
ENGINE_RGSS => "1316979643793936456",
ENGINE_RPGMV => "1316979671178547342",
ENGINE_OTHER => "1316979763495305267"
),
"language" => array(
LANGUAGE_VIETNAMESE => "1316979799171797063",
LANGUAGE_ENGLISH => "1316979815722778705",
LANGUAGE_JAPANESE => "1316979841379336233",
LANGUAGE_CHINESE => "1316979857858494464",
LANGUAGE_OTHER => "1316979893292109865",
LANGUAGE_MULTIPLE => "1316979923566727228"
),
"os" => array(
"pc" => "1317004094090776687",
"mobile" => "1317004103649591326"
),
"tags" => array(
"easyrpg" => "1317051591747960832",
"joiplay" => "1317051602003034132"
)
)
),
"moderation" => array(
"allowed_mentions" => array(
"parse" => ["roles"],
"roles" => ["1194297303142518844"]
)
)
);
?>