-
Notifications
You must be signed in to change notification settings - Fork 23
/
api.lua
1440 lines (1424 loc) · 72.4 KB
/
api.lua
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local URL = require "socket.url"
local https = require "ssl.https"
local serpent = require "serpent"
local json = (loadfile "/home/USERNAME/inline/JSON.lua")()
local token = '386343615:AAEdTNZP025yDWqUhBAdb7vW9oHVCLewdSk' --token
local url = 'https://api.telegram.org/bot' .. token
local offset = 0
local redis = require('redis')
local redis = redis.connect('127.0.0.1', 6379)
local SUDO = 261764158
function is_mod(chat,user)
sudo = {261764158}
local var = false
for v,_user in pairs(sudo) do
if _user == user then
var = true
end
end
local hash = redis:sismember(SUDO..'owners:'..chat,user)
if hash then
var = true
end
local hash = redis:sismember(SUDO..'helpsudo:',user)
if hash then
var = true
end
local hash2 = redis:sismember(SUDO..'mods:'..chat,user)
if hash2 then
var = true
end
return var
end
local function getUpdates()
local response = {}
local success, code, headers, status = https.request{
url = url .. '/getUpdates?timeout=20&limit=1&offset=' .. offset,
method = "POST",
sink = ltn12.sink.table(response),
}
local body = table.concat(response or {"no response"})
if (success == 1) then
return json:decode(body)
else
return nil, "Request Error"
end
end
function vardump(value)
print(serpent.block(value, {comment=false}))
end
function sendmsg(chat,text,keyboard)
if keyboard then
urlk = url .. '/sendMessage?chat_id=' ..chat.. '&text='..URL.escape(text)..'&parse_mode=html&reply_markup='..URL.escape(json:encode(keyboard))
else
urlk = url .. '/sendMessage?chat_id=' ..chat.. '&text=' ..URL.escape(text)..'&parse_mode=html'
end
https.request(urlk)
end
function edit( message_id, text, keyboard)
local urlk = url .. '/editMessageText?&inline_message_id='..message_id..'&text=' .. URL.escape(text)
urlk = urlk .. '&parse_mode=Markdown'
if keyboard then
urlk = urlk..'&reply_markup='..URL.escape(json:encode(keyboard))
end
return https.request(urlk)
end
function Canswer(callback_query_id, text, show_alert)
local urlk = url .. '/answerCallbackQuery?callback_query_id=' .. callback_query_id .. '&text=' .. URL.escape(text)
if show_alert then
urlk = urlk..'&show_alert=true'
end
https.request(urlk)
end
function answer(inline_query_id, query_id , title , description , text , keyboard)
local results = {{}}
results[1].id = query_id
results[1].type = 'article'
results[1].description = description
results[1].title = title
results[1].message_text = text
urlk = url .. '/answerInlineQuery?inline_query_id=' .. inline_query_id ..'&results=' .. URL.escape(json:encode(results))..'&parse_mode=Markdown&cache_time=' .. 1
if keyboard then
results[1].reply_markup = keyboard
urlk = url .. '/answerInlineQuery?inline_query_id=' .. inline_query_id ..'&results=' .. URL.escape(json:encode(results))..'&parse_mode=Markdown&cache_time=' .. 1
end
https.request(urlk)
end
function settings(chat,value)
local hash = SUDO..'settings:'..chat..':'..value
if value == 'file' then
text = 'فیلتر فایل'
elseif value == 'keyboard' then
text = 'فیلتردرون خطی(کیبرد شیشه ای)'
elseif value == 'link' then
text = 'قفل ارسال لینک(تبلیغات)'
elseif value == 'game' then
text = 'فیلتر انجام بازی های(inline)'
elseif value == 'username' then
text = 'قفل ارسال یوزرنیم(@)'
elseif value == 'pin' then
text = 'قفل پین کردن(پیام)'
elseif value == 'photo' then
text = 'فیلتر تصاویر'
elseif value == 'gif' then
text = 'فیلتر تصاویر متحرک'
elseif value == 'video' then
text = 'فیلتر ویدئو'
elseif value == 'audio' then
text = 'فیلتر صدا(audio-voice)'
elseif value == 'music' then
text = 'فیلتر آهنگ(MP3)'
elseif value == 'text' then
text = 'فیلتر متن'
elseif value == 'sticker' then
text = 'قفل ارسال برچسب'
elseif value == 'contact' then
text = 'فیلتر مخاطبین'
elseif value == 'forward' then
text = 'فیلتر فوروارد'
elseif value == 'persian' then
text = 'فیلتر گفتمان(فارسی)'
elseif value == 'english' then
text = 'فیلتر گفتمان(انگلیسی)'
elseif value == 'bot' then
text = 'قفل ورود ربات(API)'
elseif value == 'tgservice' then
text = 'فیلتر پیغام ورود،خروج افراد'
elseif value == 'groupadds' then
text = 'تبلیغات'
end
if not text then
return ''
end
if redis:get(hash) then
redis:del(hash)
return text..' غیرفعال شد.'
else
redis:set(hash,true)
return text..' فعال شد.'
end
end
function fwd(chat_id, from_chat_id, message_id)
local urlk = url.. '/forwardMessage?chat_id=' .. chat_id .. '&from_chat_id=' .. from_chat_id .. '&message_id=' .. message_id
local res, code, desc = https.request(urlk)
if not res and code then --if the request failed and a code is returned (not 403 and 429)
end
return res, code
end
function sleep(n)
os.execute("sleep " .. tonumber(n))
end
local day = 86400
local function run()
while true do
local updates = getUpdates()
vardump(updates)
if(updates) then
if (updates.result) then
for i=1, #updates.result do
local msg = updates.result[i]
offset = msg.update_id + 1
if msg.inline_query then
local q = msg.inline_query
if q.from.id == 370725344 or q.from.id == 261764158 then
if q.query:match('%d+') then
local chat = '-'..q.query:match('%d+')
local function is_lock(chat,value)
local hash = SUDO..'settings:'..chat..':'..value
if redis:get(hash) then
return true
else
return false
end
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '⛓تنظیمات⚙️', callback_data = 'groupsettings:'..chat} --,{text = '💵Sales💵', callback_data = 'aboute:'..chat}
},{
--{text = '📢Support📢', callback_data = 'supportbot:'..chat} --,{text = '📝Your Adds📝', callback_data = 'youradds:'..chat}
-- },{
{text = '📄اطلاعات گروه📙', callback_data = 'groupinfo:'..chat} --,{text = '⚠️Help⚠️', callback_data = 'helpbot:'..chat}
},{
{text = '📝راهنما🔖', callback_data = 'helptext:'..chat}
},{
{text = '⭕️بستن پنل🚫', callback_data = 'close:'..chat}
}
}
answer(q.id,'panel','Group settings',chat,'🌐 منوی اصلی :',keyboard)
end
end
end
if msg.callback_query then
local q = msg.callback_query
local chat = ('-'..q.data:match('(%d+)') or '')
if is_mod(chat,q.from.id) then
if q.data:match('_') and not (q.data:match('next_page') or q.data:match('left_page')) then
Canswer(q.id,"@BanG_TeaM :D",true)
elseif q.data:match('lock') then
local lock = q.data:match('lock (.*)')
TIME_MAX = (redis:hget("flooding:settings:"..chat,"floodtime") or 3)
MSG_MAX = (redis:hget("flooding:settings:"..chat,"floodmax") or 5)
WARN_MAX = (redis:hget("warn:settings:"..chat,"warnmax") or 3)
local result = settings(chat,lock)
if lock == 'photo' or lock == 'audio' or lock == 'video' or lock == 'gif' or lock == 'music' or lock == 'file' or lock == 'link' or lock == 'sticker' or lock == 'text' or lock == 'pin' or lock == 'username' or lock == 'hashtag' or lock == 'contact' then
q.data = 'left_page:'..chat
elseif lock == 'muteall' then
if redis:get(SUDO..'muteall'..chat) then
redis:del(SUDO..'muteall'..chat)
result = "فیلتر تمامی گفتگو ها غیرفعال گردید."
else
redis:set(SUDO..'muteall'..chat,true)
result = "فیلتر تمامی گفتگو ها فعال گردید!"
end
q.data = 'next_page:'..chat
elseif lock == 'spam' then
local hash = redis:hget("flooding:settings:"..chat, "flood")
if hash then
if redis:hget("flooding:settings:"..chat, "flood") == 'kick' then
spam_status = 'مسدود سازی(کاربر)'
redis:hset("flooding:settings:"..chat, "flood",'ban')
elseif redis:hget("flooding:settings:"..chat, "flood") == 'ban' then
spam_status = 'سکوت(کاربر)'
redis:hset("flooding:settings:"..chat, "flood",'mute')
elseif redis:hget("flooding:settings:"..chat, "flood") == 'mute' then
spam_status = '🔓'
redis:hdel("flooding:settings:"..chat, "flood")
end
else
spam_status = 'اخراج سازی(کاربر)'
redis:hset("flooding:settings:"..chat, "flood",'kick')
end
result = 'عملکرد قفل ارسال هرزنامه : '..spam_status
q.data = 'next_page:'..chat
elseif lock == 'warn' then
local hash = redis:hget("warn:settings:"..chat, "swarn")
if hash then
if redis:hget("warn:settings:"..chat, "swarn") == 'kick' then
warn_status = 'مسدود سازی(کاربر)'
redis:hset("warn:settings:"..chat, "swarn",'ban')
elseif redis:hget("warn:settings:"..chat, "swarn") == 'ban' then
warn_status = 'سکوت(کاربر)'
redis:hset("warn:settings:"..chat, "swarn",'mute')
elseif redis:hget("warn:settings:"..chat, "swarn") == 'mute' then
warn_status = '🔓'
redis:hdel("warn:settings:"..chat, "swarn")
end
else
warn_status = 'اخراج سازی(کاربر)'
redis:hset("warn:settings:"..chat, "swarn",'kick')
end
result = 'عملکرد قفل ارسال هرزنامه : '..warn_status
q.data = 'next_page:'..chat
elseif lock == 'MSGMAXup' then
if tonumber(MSG_MAX) == 20 then
Canswer(q.id,'حداکثر عدد انتخابی برای این قابلیت [20] میباشد!',true)
else
MSG_MAX = tonumber(MSG_MAX) + 1
redis:hset("flooding:settings:"..chat,"floodmax",MSG_MAX)
q.data = 'next_page:'..chat
result = MSG_MAX
end
elseif lock == 'MSGMAXdown' then
if tonumber(MSG_MAX) == 2 then
Canswer(q.id,'حداقل عدد انتخابی مجاز برای این قابلیت [2] میباشد!',true)
else
MSG_MAX = tonumber(MSG_MAX) - 1
redis:hset("flooding:settings:"..chat,"floodmax",MSG_MAX)
q.data = 'next_page:'..chat
result = MSG_MAX
end
elseif lock == 'TIMEMAXup' then
if tonumber(TIME_MAX) == 10 then
Canswer(q.id,'حداکثر عدد انتخابی برای این قابلیت [10] میباشد!',true)
else
TIME_MAX = tonumber(TIME_MAX) + 1
redis:hset("flooding:settings:"..chat ,"floodtime" ,TIME_MAX)
q.data = 'next_page:'..chat
result = TIME_MAX
end
elseif lock == 'TIMEMAXdown' then
if tonumber(TIME_MAX) == 2 then
Canswer(q.id,'حداقل عدد انتخابی مجاز برای این قابلیت [2] میباشد!',true)
else
TIME_MAX = tonumber(TIME_MAX) - 1
redis:hset("flooding:settings:"..chat ,"floodtime" ,TIME_MAX)
q.data = 'next_page:'..chat
result = TIME_MAX
end
elseif lock == 'WARNMAXup' then
if tonumber(WARN_MAX) == 20 then
Canswer(q.id,'حداکثر عدد انتخابی برای این قابلیت [20] میباشد!',true)
else
WARN_MAX = tonumber(MSG_MAX) + 1
redis:hset("warn:settings:"..chat,"warnmax",MSG_MAX)
q.data = 'next_page:'..chat
result = WARN_MAX
end
elseif lock == 'WARNMAXdown' then
if tonumber(WARN_MAX) == 2 then
Canswer(q.id,'حداقل عدد انتخابی مجاز برای این قابلیت [2] میباشد!',true)
else
WARN_MAX = tonumber(WARN_MAX) - 1
redis:hset("warn:settings:"..chat,"warnmax",WARN_MAX)
q.data = 'next_page:'..chat
result = WARN_MAX
end
elseif lock == 'welcome' then
local h = redis:get(SUDO..'status:welcome:'..chat)
if h == 'disable' or not h then
redis:set(SUDO..'status:welcome:'..chat,'enable')
result = 'ارسال پیام خوش آمدگویی فعال گردید.'
q.data = 'next_page:'..chat
else
redis:set(SUDO..'status:welcome:'..chat,'disable')
result = 'ارسال پیام خوش آمدگویی غیرفعال گردید!'
q.data = 'next_page:'..chat
end
else
q.data = 'next_page:'..chat
end
Canswer(q.id,result)
end
-------------------------------------------------------------------------
if q.data:match('firstmenu') then
local chat = '-'..q.data:match('(%d+)$')
local function is_lock(chat,value)
local hash = SUDO..'settings:'..chat..':'..value
if redis:get(hash) then
return true
else
return false
end
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '⛓تنظیمات⚙️', callback_data = 'groupsettings:'..chat} --,{text = '💵Sales💵', callback_data = 'aboute:'..chat}
},{
--{text = '📢Support📢', callback_data = 'supportbot:'..chat} --,{text = '📝Your Adds📝', callback_data = 'youradds:'..chat}
-- },{
{text = '📄اطلاعات گروه📙', callback_data = 'groupinfo:'..chat} --,{text = '⚠️Help⚠️', callback_data = 'helpbot:'..chat}
},{
{text = '📝راهنما🔖', callback_data = 'helptext:'..chat}
},{
{text = '⭕️بستن پنل🚫', callback_data = 'close:'..chat}
}
}
edit(q.inline_message_id,'🌀 برگشتیم به منوی اصلی :',keyboard)
end
------------------------------------------------------------------------
if q.data:match('supportbot') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🛠Technical Team🛠', callback_data = 'teamfani:'..chat},{text = '📝Offer📝', callback_data = 'enteqadvapishnehad:'..chat}
},{
{text = '📱Report a problem📱', callback_data = 'reportproblem:'..chat},{text = '❓Frequently Questions❓', callback_data = 'soalatmotadavel:'..chat}
},{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'`Welcome To` *Support🌷*\n`Select From` *Menu*👇',keyboard)
end
------------------------------------------------------------------------
if q.data:match('teamfani') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙Back', callback_data = 'supportbot:'..chat}
}
}
edit(q.inline_message_id,'[🔖Send Your Msg🔖](https://telegram.me/BanG_Pv_Bot)',keyboard)
end
------------------------------------------------------------------------
if q.data:match('reportproblem') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙Back', callback_data = 'supportbot:'..chat}
}
}
edit(q.inline_message_id,'[✔️Send Your Problem✔️](https://telegram.me/BanG_Pv_Bot)',keyboard)
end
------------------------------------------------------------------------
if q.data:match('fahedsale') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = 'تمدید سرویس انتخابی', callback_data = 'tamdidservice:'..chat},{text = 'خرید طرح جدید', callback_data = 'salegroup:'..chat}
},{
{text = 'گزارشات مالی', callback_data = 'reportmony:'..chat}
},{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙Back', callback_data = 'supportbot:'..chat}
}
}
edit(q.inline_message_id,'`به بخش خرید گروه،تمدید سرویس،گزارش مالی خوش آمدید.`\n`از منوی زیر انتخاب کنید:`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('tamdidservice') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙Back', callback_data = 'fahedsale:'..chat}
}
}
edit(q.inline_message_id,'`طرح انتخابی [شما دائمی/مادام العمر(نامحدود روز)] میباشد و نیاز به تمدید طرح ندارید!`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('reportmony') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙 Back', callback_data = 'fahedsale:'..chat}
}
}
edit(q.inline_message_id,'`🚫Sorry, unfortunately the system is disabled until further notice🚫`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('enteqadvapishnehad') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙 Back', callback_data = 'supportbot:'..chat}
}
}
edit(q.inline_message_id,'[❗️Send Your Offer❗️](https://telegram.me/BanG_Pv_Bot)',keyboard)
end
------------------------------------------------------------------------
if q.data:match('soalatmotadavel') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙 Back', callback_data = 'supportbot:'..chat}
}
}
edit(q.inline_message_id,'`🚫Sorry, unfortunately the system is disabled until further notice🚫`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('close') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '❌خیر❌', callback_data = 'firstmenu:'..chat},{text = '✅بله✅', callback_data = 'closepanel:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️ایا از بستن پنل مطمین هستید؟',keyboard)
end
-----------------------------------------------------
if q.data:match('closepanel') then
local chat = '-'..q.data:match('(%d+)$')
edit(q.inline_message_id,'`⚜️پنل با موفقیت بسته شد✅`')
end
------------------------------------------------------------------------
--[[if q.data:match('groupinfo') thens
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'🚫Sorry, unfortunately the system is disabled until further notice🚫',keyboard)
end]]
------------------------------------------------------------------------
if q.data:match('helpbot') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '📝Text Help📝', callback_data = 'helptext:'..chat}
},{
{text = '🎤Voice Help🎤', callback_data = 'voicehelp:'..chat},{text = '🌆Photo Help🌆', callback_data = 'videohelp:'..chat}
},{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'`WelCome To` _Help🌷_\n Select From *Menu👇*',keyboard)
end
------------------------------------------------------------------------
if q.data:match('helptext') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'>[راهنمای مالکین گروه(اصلی-فرعی)](https://telegram.me/bang_team)\n*[/#!]options* --دریافت تنظیمات گروه به صورت اینلاین\n*[/#!]setrules text* --تنظیم قوانین گروه\n*[/#!]modset* @username|reply|user-id --تنظیم مالک فرعی جدید برای گروه با یوزرنیم|ریپلی|شناسه -فرد\n*[/#!]moddem* @username|reply|user-id --حذف مالک فرعی از گروه با یوزرنیم|ریپلی|شناسه -فرد\n*[/#!]ownerlist* --دریافت لیست مدیران اصلی\n*[/#!]managers* --دریافت لیست مدیران فرعی گروه\n*[/#!]setlink link* {لینک-گروه} --تنظیم لینک گروه\n*[/#!]link* دریافت لینک گروه\n*[/#!]kick* @username|reply|user-id اخراج کاربر با ریپلی|یوزرنیم|شناسه\n*_______________________*\n>[راهنمای بخش حذف ها](https://telegram.me/bang_team)\n*[/#!]delete managers* {حذف تمامی مدیران فرعی تنظیم شده برای گروه}\n*[/#!]delete welcome* {حذف پیغام خوش آمدگویی تنظیم شده برای گروه}\n*[/#!]delete bots* {حذف تمامی ربات های موجود در ابرگروه}\n*[/#!]delete silentlist* {حذف لیست سکوت کاربران}\n*[/#!]delete filterlist* {حذف لیست کلمات فیلتر شده در گروه}\n*_______________________*\n>[راهنمای بخش خوش آمدگویی](https://telegram.me/bang_team)\n*[/#!]welcome enable* --(فعال کردن پیغام خوش آمدگویی در گروه)\n*[/#!]welcome disable* --(غیرفعال کردن پیغام خوش آمدگویی در گروه)\n*[/#!]setwelcome text* --(تنظیم پیغام خوش آمدگویی جدید در گروه)\n*_______________________*\n>[راهنمای بخش فیلترگروه](https://telegram.me/bang_team)\n*[/#!]mutechat* --فعال کردن فیلتر تمامی گفتگو ها\n*[/#!]unmutechat* --غیرفعال کردن فیلتر تمامی گفتگو ها\n*[/#!]mutechat number(h|m|s)* --فیلتر تمامی گفتگو ها بر حسب زمان[ساعت|دقیقه|ثانیه]\n*_______________________*\n>[راهنمای دستورات حالت سکوت کاربران](https://telegram.me/bang_team)\n*[/#!]silentuser* @username|reply|user-id --افزودن کاربر به لیست سکوت با یوزرنیم|ریپلی|شناسه -فرد\n*[/#!]unsilentuser* @username|reply|user-id --افزودن کاربر به لیست سکوت با یوزرنیم|ریپلی|شناسه -فرد\n*[/#!]silentlist* --دریافت لیست کاربران حالت سکوت\n*_______________________*\n>[راهنمای بخش فیلتر-کلمات](https://telegram.me/bang_team)\n*[/#!]filter word --افزودن عبارت جدید به لیست کلمات فیلتر شده\n[/#!]unfilter word* --حذف عبارت جدید از لیست کلمات فیلتر شده\n*[/#!]filterlist* --دریافت لیست کلمات فیلتر شده\n*_______________________*\n>[راهنمای بخش تنظیم پیغام مکرر](https://telegram.me/bang_team)\n*[/#!]floodmax number* --تنظیم حساسیت نسبت به ارسال پیام مکرر\n*[/#!]floodtime* --تنظیم حساسیت نسبت به ارسال پیام مکرر برحسب زمان',keyboard)
end
------------------------------------------------------------------------
if q.data:match('videohelp') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙 Back', callback_data = 'helpbot:'..chat}
}
}
edit(q.inline_message_id,'`⛔️Sorry, currently the system of choice is disabled⛔️`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('voicehelp') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 Back To Menu', callback_data = 'firstmenu:'..chat},{text = '🔙 Back', callback_data = 'helpbot:'..chat}
}
}
edit(q.inline_message_id,'`⛔️Sorry, currently the system of choice is disabled⛔️`',keyboard)
end
------------------------------------------------------------------------
------------------------------------------------------------------------
if q.data:match('groupinfo') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '👮صاحبان گروه👮', callback_data = 'ownerlist:'..chat}
},{
{text = '👨✈️مدیران گروه👨✈️', callback_data = 'managerlist:'..chat}
},{
{text = '➰قوانین گروه➰', callback_data = 'showrules:'..chat}
},{
{text = '🔗لینک گروه🔗', callback_data = 'linkgroup:'..chat}
},{
{text = '📒لیست کاربران مسدود⛔️', callback_data = 'banlist:'..chat}
},{
{text = '📒لیست کلمات فیلتر🚫', callback_data = 'filterlistword:'..chat}
},{
{text = '📒لیست کاربران میوت🔇', callback_data = 'silentlistusers:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'©اطلاعات گروه :',keyboard)
end
------------------------------------------------------------------------
if q.data:match('managerlist') then
local chat = '-'..q.data:match('(%d+)$')
local list = redis:smembers(SUDO..'mods:'..chat)
local t = '*👨✈️مدیران گروه👇* \n\n'
for k,v in pairs(list) do
t = t..k.." - `"..v.."`\n"
end
t = t..'\nبرای مشاهده کاربر از دستور زیر استفاده کنید 👇\n/whois [آیدی کاربر]\nمثال 👇\n /whois 234458457'
if #list == 0 then
t = '*👨✈️هیچ مدیری در گروه وجود ندارد❌*'
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '👨✈️پاک سازی مدیران🗑', callback_data = 'removemanagers:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'groupinfo:'..chat}
}
}
edit(q.inline_message_id, ''..t..'',keyboard)
end
------------------------------------------------------------------------
if q.data:match('showmanagers') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'managerlist:'..chat}
}
}
edit(q.inline_message_id,'`⛔️Sorry, currently the system of choice is disabled⛔️`',keyboard)
end
------------------------------------------------------------------------
------------------------------------------------------------------------
if q.data:match('ownerlist') then
local chat = '-'..q.data:match('(%d+)$')
local list = redis:smembers(SUDO..'owners:'..chat)
local t = '*👮لیست صاحبان گروه👇* \n\n'
for k,v in pairs(list) do
t = t..k.." - `"..v.."`\n"
end
t = t..'\nبرای مشاهده کاربر از دستور زیر استفاده کنید 👇\n/whois [آیدی کاربر]\nمثال 👇\n /whois 234458457'
if #list == 0 then
t = '👮این گروه هیچ صاحبی ندارد❌'
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '👮پاک سازی صاحبان گروه❌', callback_data = 'removeowners:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'groupinfo:'..chat}
}
}
edit(q.inline_message_id, ''..t..'',keyboard)
end
------------------------------------------------------------------------
if q.data:match('showowners') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'ownerlist:'..chat}
}
}
edit(q.inline_message_id,'`⛔️Sorry, currently the system of choice is disabled⛔️`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('showrules') then
local chat = '-'..q.data:match('(%d+)$')
local rules = redis:get(SUDO..'grouprules'..chat)
if not rules then
rules = '➰قوانینی وجود ندارد❌'
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '➰پاک سازی قوانین❌', callback_data = 'removerules:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'groupinfo:'..chat}
}
}
edit(q.inline_message_id, '➰قوانین گروه👇\n\n `'..rules..'`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('linkgroup') then
local chat = '-'..q.data:match('(%d+)$')
local links = redis:get(SUDO..'grouplink'..chat)
if not links then
links = '🌐لینکی وجود ندارد❌'
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🌐حذف لینک❌', callback_data = 'removegrouplink:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'groupinfo:'..chat}
}
}
edit(q.inline_message_id, '🌐لینک گروه👇\n '..links..'',keyboard)
end
------------------------------------------------------------------------
if q.data:match('banlist') then
local chat = '-'..q.data:match('(%d+)$')
local list = redis:smembers(SUDO..'banned'..chat)
local t = '*⛔️لیست مسدود شدگان👇*\n\n'
for k,v in pairs(list) do
t = t..k.." - _"..v.."_\n"
end
t = t..'\nبرای مشاهده کاربر از دستور زیر استفاده کنید 👇\n/whois [آیدی کاربر]\nمثال 👇\n /whois 234458457'
if #list == 0 then
t = '*⛔️هیچ کاربر مسدودی در این گروه وجود ندارد❌*'
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '⛔️پاکسازی کاربران مسدود❌', callback_data = 'removebanlist:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'groupinfo:'..chat}
}
}
edit(q.inline_message_id, ''..t..'',keyboard)
end
------------------------------------------------------------------------
if q.data:match('showusers') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'banlist:'..chat}
}
}
edit(q.inline_message_id,'`⛔️Sorry, currently the system of choice is disabled⛔️`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('silentlistusers') then
local chat = '-'..q.data:match('(%d+)$')
local list = redis:smembers(SUDO..'mutes'..chat)
local t = '🔇لیست کاربران سکوت شده👇 \n\n'
for k,v in pairs(list) do
t = t..k.." - _"..v.."_\n"
end
t = t..'\nبرای مشاهده کاربر از دستور زیر استفاده کنید 👇\n/whois [آیدی کاربر]\nمثال 👇\n /whois 234458457'
if #list == 0 then
t = '🔇هیچ کاربری در لیست سکوت وجود ندارد❌'
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔇پاکسازی لیست سکوت❌', callback_data = 'removesilentlist:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'groupinfo:'..chat}
}
}
edit(q.inline_message_id, ''..t..'',keyboard)
end
------------------------------------------------------------------------
if q.data:match('showusersmutelist') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'silentlistusers:'..chat}
}
}
edit(q.inline_message_id,'`⛔️Sorry, currently the system of choice is disabled⛔️`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('filterlistword') then
local chat = '-'..q.data:match('(%d+)$')
local list = redis:smembers(SUDO..'filters:'..chat)
local t = '📝کلمات فیلتر شده👇 \n\n'
for k,v in pairs(list) do
t = t..k.." - _"..v.."_\n"
end
if #list == 0 then
t = '📝لیست کلمات فیلتر شده خالی است❌'
end
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '📝پاکسازی فیلتر لیست❌', callback_data = 'removefilterword:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'groupinfo:'..chat}
}
}
edit(q.inline_message_id, ''..t..'',keyboard)
end
--########################################################################--
if q.data:match('removemanagers') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '❌خیر❌', callback_data = 'bgdbdfddhdfhdyumrurmtu:'..chat},{text = '✅بله✅', callback_data = 'hjwebrjb53j5bjh3:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'managerlist:'..chat}
}
}
edit(q.inline_message_id,'⚜️آیا از انجام این عملیات مطمین هستید❓',keyboard)
end
------------------------------------------------------------------------
if q.data:match('hjwebrjb53j5bjh3') then
local chat = '-'..q.data:match('(%d+)$')
redis:del(SUDO..'mods:'..chat)
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات با موفقیت انجام شد✅',keyboard)
end
------------------------------------------------------------------------
if q.data:match('bgdbdfddhdfhdyumrurmtu') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات لغو شد🚫',keyboard)
end
--########################################################################--
if q.data:match('removeowners') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '❌خیر❌', callback_data = 'ncxvnfhfherietjbriurti:'..chat},{text = '✅بله✅', callback_data = 'ewwerwerwer4334b5343:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'ownerlist:'..chat}
}
}
edit(q.inline_message_id,'⚜️آیا از انجام این عملیات مطمین هستید❓',keyboard)
end
------------------------------------------------------------------------
if q.data:match('ewwerwerwer4334b5343') then
local chat = '-'..q.data:match('(%d+)$')
redis:del(SUDO..'owners:'..chat)
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات با موفقیت انجام شد✅',keyboard)
end
------------------------------------------------------------------------
if q.data:match('ncxvnfhfherietjbriurti') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات لغو شد🚫',keyboard)
end
--########################################################################--
if q.data:match('removerules') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '❌خیر❌', callback_data = 'as12310fklfkmgfvm:'..chat},{text = '✅بله✅', callback_data = '3kj5g34ky6g34uy:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'showrules:'..chat}
}
}
edit(q.inline_message_id,'⚜️آیا از انجام این عملیات مطمین هستید❓',keyboard)
end
------------------------------------------------------------------------
if q.data:match('3kj5g34ky6g34uy') then
local chat = '-'..q.data:match('(%d+)$')
redis:del(SUDO..'grouprules'..chat)
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات با موفقیت انجام شد✅',keyboard)
end
------------------------------------------------------------------------
if q.data:match('as12310fklfkmgfvm') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات لغو شد🚫',keyboard)
end
--########################################################################--
if q.data:match('removegrouplink') then
local chat = '-'..q.data:match('(%d+)$')
redis:del(SUDO..'grouplink'..chat)
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'linkgroup:'..chat}
}
}
edit(q.inline_message_id,'🔗لینک گروه با موفقیت حذف شد✅',keyboard)
end
--########################################################################--
if q.data:match('removebanlist') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '❌خیر❌', callback_data = 'sudfewbhwebr9983243:'..chat},{text = '✅بله✅', callback_data = 'erwetrrefgfhfdhretre:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'banlist:'..chat}
}
}
edit(q.inline_message_id,'⚜️آیا از انجام این عملیات مطمین هستید❓',keyboard)
end
------------------------------------------------------------------------
if q.data:match('erwetrrefgfhfdhretre') then
local chat = '-'..q.data:match('(%d+)$')
redis:del(SUDO..'banned'..chat)
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات با موفقیت انجام شد✅',keyboard)
end
------------------------------------------------------------------------
if q.data:match('sudfewbhwebr9983243') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات لغو شد🚫',keyboard)
end
--########################################################################--
if q.data:match('removesilentlist') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '❌خیر❌', callback_data = 'sadopqwejjbkvw90892:'..chat},{text = '✅بله✅', callback_data = 'ncnvdifeqrhbksdgfid47:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'silentlistusers:'..chat}
}
}
edit(q.inline_message_id,'⚜️آیا از انجام این عملیات مطمین هستید❓',keyboard)
end
------------------------------------------------------------------------
if q.data:match('ncnvdifeqrhbksdgfid47') then
local chat = '-'..q.data:match('(%d+)$')
redis:del(SUDO..'mutes'..chat)
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات با موفقیت انجام شد✅',keyboard)
end
------------------------------------------------------------------------
if q.data:match('sadopqwejjbkvw90892') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات لغو شد🚫',keyboard)
end
--########################################################################--
if q.data:match('removefilterword') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '❌خیر❌', callback_data = 'ncxvbcusxsokd9374uid:'..chat},{text = '✅بله✅', callback_data = 'erewigfuwebiebfjdskfbdsugf:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'filterlistword:'..chat}
}
}
edit(q.inline_message_id,'⚜️آیا از انجام این عملیات مطمین هستید❓',keyboard)
end
------------------------------------------------------------------------
if q.data:match('erewigfuwebiebfjdskfbdsugf') then
local chat = '-'..q.data:match('(%d+)$')
redis:del(SUDO..'filters:'..chat)
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات با موفقیت انجام شد✅',keyboard)
end
------------------------------------------------------------------------
if q.data:match('ncxvbcusxsokd9374uid') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat}
}
}
edit(q.inline_message_id,'⚜️عملیات لغو شد🚫',keyboard)
end
--########################################################################--
--#####################################################################--
if q.data:match('salegroup') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = 'مدیریت معمولی گروه', callback_data = 'normalmanage:'..chat}
},{
{text = 'مدیریت پیشرفته گروه', callback_data = 'promanage:'..chat}
},{
{text = 'مدیریت حرفه ای گروه', callback_data = 'herfeiimanage:'..chat}
},{
{text = '🔙 برگشت به منوی اصلی💠', callback_data = 'firstmenu:'..chat},{text = '🔙 برگشت به منوی قبلی💠', callback_data = 'fahedsale:'..chat}
}
}
edit(q.inline_message_id,'`در این بخش شما میتوانید نسبت به خرید سرویس/طرح جدید اقدام کنید.`\n`سرویس مورد نظر خود را انتخاب کنید:`',keyboard)
end
------------------------------------------------------------------------
if q.data:match('normalmanage') then
local chat = '-'..q.data:match('(%d+)$')
local keyboard = {}
keyboard.inline_keyboard = {
{
{text = 'طرح ها و تعرفه ها', callback_data = 'tarhvatarefe:'..chat},{text = 'بررسی قابلیت ها', callback_data = 'baresiqabeliyat:'..chat}