randydev commited on
Commit
43cd5fe
·
verified ·
1 Parent(s): 3232d49

Update chatbot/plugins/chat.py

Browse files
Files changed (1) hide show
  1. chatbot/plugins/chat.py +5 -3
chatbot/plugins/chat.py CHANGED
@@ -57,7 +57,7 @@ FREE_GEMINI_TEXT = """
57
  - Voice: `Unlimited`
58
  - Document: `{check_status}`
59
 
60
- + You need pay cheap 15k (IDR) for document all unlimited
61
 
62
  - contact : @hellozdev
63
  """
@@ -73,13 +73,15 @@ async def userstatus(client: Client, message: Message):
73
  return await message.reply_text(
74
  FREE_GEMINI_TEXT.format(
75
  name=message.from_user.first_name,
76
- check_status="Unlimited" if is_check_plan else "Stopped"
 
77
  )
78
  )
79
  return await message.reply_text(
80
  FREE_GEMINI_TEXT.format(
81
  name=message.from_user.first_name,
82
- check_status="Unlimited" if is_check_plan else "Stopped"
 
83
  )
84
  )
85
 
 
57
  - Voice: `Unlimited`
58
  - Document: `{check_status}`
59
 
60
+ {info}
61
 
62
  - contact : @hellozdev
63
  """
 
73
  return await message.reply_text(
74
  FREE_GEMINI_TEXT.format(
75
  name=message.from_user.first_name,
76
+ check_status="Unlimited" if is_check_plan else "Stopped",
77
+ info="You need email business: [register](https://google.com)\nRemember: **can't ownership**"
78
  )
79
  )
80
  return await message.reply_text(
81
  FREE_GEMINI_TEXT.format(
82
  name=message.from_user.first_name,
83
+ check_status="Unlimited" if is_check_plan else "Stopped",
84
+ info="**All unlimited good!**"
85
  )
86
  )
87