-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathinfo.py
More file actions
58 lines (44 loc) · 1.3 KB
/
Copy pathinfo.py
File metadata and controls
58 lines (44 loc) · 1.3 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
def welcome(name):
return f"""Hey {name}🖐\n
Send me text, links, gifs, stickers, photos, videos or voice messages and I will anonymously forward them to your partner
Commands
/start - start the bot
/help - show help guide
/next — find a new partner
/stop — stop the dialog
/settings - settings menu
/report - Report a message
"""
def user_help():
return """With this bot you can chat with Guys and Girls anonymously based on your preferences of age, gender.
Commands
/start - start the bot
/next — find a new partner
/stop — stop this dialog
/settings - settings menu
/sharelink - share profile to partner
/report - Report a message
/help - show the guide
"""
def partner_match(gender):
if gender == "Boy":
partner = "🤴🏻 Boy"
else:
partner = "👸🏻 Girl"
return f"""Partner: {partner}
/next — find a new partner
/stop — stop this dialog"""
def partner_not_found():
return """🔎 Searching for a partner"""
def destroy(who=None):
if who == "You":
return """You stopped the dialog 🙄
Type /next to find a new partner
"""
elif who == "Your":
return """Your partner has stopped the dialog 😞
Type /next to find a new partner
"""
def invalid_destroy():
return """You have no partner 🤔
Type /next to find a new partner"""