added my mods

now will somehow pr
This commit is contained in:
BrotherBoard 2024-05-16 18:44:57 +03:00 committed by GitHub
parent c42ffea998
commit 0fa3cfe3d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5632 additions and 0 deletions

View file

@ -0,0 +1,17 @@
from babase import app, Plugin as p
from bascenev1 import gettexture as x, apptimer as z
from bascenev1 import broadcastmessage as push, get_foreground_host_activity as ga, get_chat_messages as gcm
# ba_meta require api 8
# ba_meta export plugin
class byBordd(p):
def ear(s):
a = gcm()
if a and s.la != a[-1]:
if app.config.resolve('Chat Muted'): push(a[-1], (1, 1, 1), True, s.con)
s.la = a[-1]
z(0.1, s.ear)
def get(s):
with ga().context: s.con=x("upButton")
s.la = None; s.ear()
z(0.2, byBordd().get)