Skip to content

Commit

Permalink
Update vcplayer.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerpq authored Nov 30, 2023
1 parent 7c7292f commit b610c00
Showing 1 changed file with 30 additions and 25 deletions.
55 changes: 30 additions & 25 deletions repthon/plugins/vcplayer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#الملف تابع لـ سورس ريبـــثون
# تعريب وتحديث فريق ريبـــثون
# Repthon UsetBot T.me/Repthon
# Devolper Baqir T.me/E_7_V
import asyncio
import logging

Expand Down Expand Up @@ -43,25 +45,25 @@ async def handler(_, update):


@zq_lo.rep_cmd(
pattern="انضم ?(\S+)? ?(?:ك)? ?(\S+)?",
command=("انضم", plugin_category),
pattern="انضمام ?(\S+)? ?(?:ك)? ?(\S+)?",
command=("انضمام", plugin_category),
info={
"header": "لـ الانضمـام الى المحـادثه الصـوتيـه",
"ملاحظـه": "يمكنك اضافة الامر (ك) للامر الاساسي للانضمام الى المحادثه ك قنـاة مع اخفاء هويتك",
"امـر اضافـي": {
"ك": "للانضمام الى المحادثه ك قنـاة",
},
"الاستخـدام": [
"{tr}انضم",
"{tr}انضم + ايـدي المجمـوعـه",
"{tr}انضم ك (peer_id)",
"{tr}انضم (chat_id) ك (peer_id)",
"{tr}انضمام",
"{tr}انضمام + ايـدي المجمـوعـه",
"{tr}انضمام ك (peer_id)",
"{tr}انضمام (chat_id) ك (peer_id)",
],
"مثــال :": [
"{tr}انضم",
"{tr}انضم -1005895485",
"{tr}انضم ك -1005895485",
"{tr}انضم -1005895485 ك -1005895485",
"{tr}انضمام",
"{tr}انضمام -1005895485",
"{tr}انضمام ك -1005895485",
"{tr}انضمام -1005895485 ك -1005895485",
],
},
)
Expand All @@ -84,7 +86,7 @@ async def joinVoicechat(event):
)

try:
vc_chat = await zq_lo.get_entity(chat)
vc_chat = await zedub.get_entity(chat)
except Exception as e:
return await edit_delete(event, f'**- خطـأ** : \n{e or "UNKNOWN CHAT"}')

Expand All @@ -104,12 +106,12 @@ async def joinVoicechat(event):


@zq_lo.rep_cmd(
pattern="غادر",
command=("غادر", plugin_category),
pattern="خروج",
command=("خروج", plugin_category),
info={
"header": "لـ المغـادره من المحـادثه الصـوتيـه",
"الاستخـدام": [
"{tr}غادر",
"{tr}خروج",
],
},
)
Expand Down Expand Up @@ -147,16 +149,16 @@ async def get_playlist(event):
rep += f"{num}- `{item['title']}`\n"
else:
rep += f"{num}- `{item['title']}`\n"
await edit_delete(event, f"**- قائمـة التشغيـل :**\n\n{zed}\n**Enjoy the show**")
await edit_delete(event, f"**- قائمـة التشغيـل :**\n\n{rep}\n**Enjoy the show**")


@zq_lo.rep_cmd(
pattern="فيد ?(ف)? ?([\S ]*)?",
pattern="فيد ?(1)? ?([\S ]*)?",
command=("فيد", plugin_category),
info={
"header": "تشغيـل مقـاطع الفيـديـو في المكـالمـات",
"امـر اضافـي": {
"ف": "فرض تشغيـل المقطـع بالقـوة",
"1": "فرض تشغيـل المقطـع بالقـوة",
},
"الاستخـدام": [
"{tr}فيد بالــرد ع فيـديـو",
Expand All @@ -166,14 +168,17 @@ async def get_playlist(event):
"مثــال :": [
"{tr}فيد بالـرد",
"{tr}فيد https://www.youtube.com/watch?v=c05GBLT_Ds0",
"{tr}فيد ف https://www.youtube.com/watch?v=c05GBLT_Ds0",
"{tr}فيد 1 https://www.youtube.com/watch?v=c05GBLT_Ds0",
],
},
)
async def play_video(event):
"لـ تشغيـل مقـاطع الفيـديـو في المكـالمـات"
con = event.pattern_match.group(1).lower()
flag = event.pattern_match.group(1)
input_str = event.pattern_match.group(2)
if con == "فيديو":
return
if input_str == "" and event.reply_to_msg_id:
input_str = await tg_dl(event)
if not input_str:
Expand All @@ -194,22 +199,22 @@ async def play_video(event):


@zq_lo.rep_cmd(
pattern="شغل ?(ش)? ?([\S ]*)?",
pattern="شغل ?(1)? ?([\S ]*)?",
command=("شغل", plugin_category),
info={
"header": "تشغيـل المقـاطع الصـوتيـه في المكـالمـات",
"امـر اضافـي": {
"ش": "فرض تشغيـل المقطـع بالقـوة",
"1": "فرض تشغيـل المقطـع بالقـوة",
},
"الاستخـدام": [
"{tr}شغل بالــرد ع مقطـع صـوتي",
"{tr}شغل + رابـط",
"{tr}شغل ش + رابـط",
"{tr}شغل 1 + رابـط",
],
"مثــال :": [
"{tr}شغل بالـرد",
"{tr}شغل https://www.youtube.com/watch?v=c05GBLT_Ds0",
"{tr}شغل ش https://www.youtube.com/watch?v=c05GBLT_Ds0",
"{tr}شغل 1 https://www.youtube.com/watch?v=c05GBLT_Ds0",
],
},
)
Expand Down Expand Up @@ -237,8 +242,8 @@ async def play_audio(event):


@zq_lo.rep_cmd(
pattern="اسكت",
command=("اسكت", plugin_category),
pattern="توقف",
command=("توقف", plugin_category),
info={
"header": "لـ ايقـاف تشغيـل للمقطـع مؤقتـاً في المكـالمـه",
"الاستخـدام": [
Expand Down

0 comments on commit b610c00

Please sign in to comment.