-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.json
151 lines (148 loc) · 3.15 KB
/
bot.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
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
{
"system_messages": {
"feedback": "Feel free to share your feedback here: https://storebot.me/bot/creatememe_bot or you can write me directly: @bronydell",
"pick_lang": "Choose your language",
"number_parse_error": "Are you sure about this number? Try again",
"jobs_finished": "Done",
"hold_on": "Hold on. I'm trying to download the image.",
"editing": "Editing...",
"uploading": "Uploading..."
},
"menu":{
"message": "Press \"Create Meme\" to create meme, or just send image with caption <bottom text>/<top text>",
"keyboard":[
{
"text": "Create meme",
"action": "top"
},
{
"text": "Settings",
"action": "settings"
},
{
"text": "Feedback",
"action": "feedback"
},
{
"text": "Admin panel",
"action": "admin",
"admin_only": true
}
]
},
"admin":{
"message": "Welcome to admin panel, Solder",
"keyboard":[
{
"text": "Send message to all users",
"action": "sendmsg",
"admin_only": true
},
{
"text": "Send everyone in the menu",
"action": "reset",
"admin_only": true
},
{
"text": "Back to main menu",
"action": "menu"
}
]
},
"sendmsg":{
"message": "Send message to everybody",
"keyboard":[
{
"text": "Назад в админку",
"action": "admin"
}
]
},
"top":{
"message": "Enter your text, that you want to see on top of the image",
"keyboard":[
{
"text": "[Nothing]",
"action": "bottom"
},
{
"text": "Back to menu",
"action": "menu"
}
]
},
"bottom":{
"message": "Enter your text, that you want to see on bottom of the image",
"keyboard":[
{
"text": "[Nothing]",
"action": "send_image"
},
{
"text": "Back to menu",
"action": "menu"
}
]
},
"send_image":{
"message": "Finally! Send your image or use your last image",
"keyboard":[
{
"text": "Use previous image",
"action": "previous_image",
"had_image": 1
},
{
"text": "Back to menu",
"action": "menu"
}
]
},
"settings":{
"message": "What do you want to change in your settings?",
"keyboard": [
{
"text": "Font scale",
"action": "font"
},
{
"text": "Caps settings",
"action": "caps"
},
{
"text": "Language settings",
"action": "lang"
},
{
"text": "Back to menu",
"action": "menu"
}
]
},
"font":{
"message": "Send me scale of font(For example, 0.5 or 1). Current scale is {}",
"keyboard": [
{
"text": "Back",
"action": "settings"
}
]
},
"caps": {
"message": "Turn this feature on?",
"keyboard": [
{
"text": "Yes. Turn it on",
"action": "caps_on"
},
{
"text": "No. Turn it off",
"action": "caps_off"
},
{
"text": "Back",
"action": "settings"
}
]
}
}