-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
67 lines (47 loc) · 1.63 KB
/
constants.py
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
# ==== Superuser commands ==== #
# After setting your Telegram chat ID, send these strings to the bot over Telegram to interact with it.
# Lists these commands
COMMANDS = "commands"
# Resets all users to 0 used stickers
RESET_ALL_COUNT = "resetall"
# Wipes all users
WIPE = "wipe"
# Set all limits to X
# Command has 3 parts: The command, a space, and a digit. Ex: setlimit 10
SET_ALL_LIMIT = "setlimit"
# Get the current default sticker limit
GET_LIMIT = "limit"
# Turn the bot on or off
BOT_ENABLE = "enable"
BOT_DISABLE = "disable"
# Turn sticker monitoring on or off. (Whether the bot sends you the stickers that are printed)
STICKER_MONITORING_ON = "monitor on"
STICKER_MONITORING_OFF = "monitor off"
# Turn random event on or off
EVENT_ON = "event on"
EVENT_OFF = "event off"
# Turn slap detection on or off
SLAP_ON = "slap on"
SLAP_OFF = "slap off"
# == Reply-to commands == #
# = Reply to a forwarded sticker with these commands = #
# Add, subtract, or set sticker limit (Ex: +5, -1, or =999)
# Command: [+ or - or =][number]
# Set user's sticker limit to 0
BAN = "ban"
# Sets user's stickers printed to 0
RESET = "reset"
# Displays current offset and explains how to use the offset commands
PRINT_OFFSET = "print offset"
# Adjust the x (Horizontal) offset of the image
PRINT_OFFSET_X = "print offset x"
# Adjust the y (vertical) offset of the image
PRINT_OFFSET_Y = "print offset y"
# Displays the current queue and checks if it exists
CHECK_QUEUE = "check queue"
# Lists the print queues on the device
LIST_QUEUES = "list queues"
# Sets the print queue to your specification
SET_QUEUE = "set queue"
# Saves configuration
SAVE = "save"