bas2007s

Untitled

Oct 27th, 2021
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 31.56 KB | None | 0 0
  1. gg.alert( ' MỚI BỔ SUNG THÊM TELE CHO 64BIT ')
  2. gg.alert(' TƯƠNG LAI GẦN SẺ PHÁT TRIỂN THÊM VÀI CHỨC NĂNG NỮA.... NẾU SIÊNG :V')
  3. gg.alert(' ỔN ĐỊNH VÀ CẢI THIỆN SCRIPT TRONG TỪNG GIỜ')
  4.  
  5. function split(szFullString, szSeparator)
  6.     local nFindStartIndex = 1
  7.     local nSplitIndex = 1
  8.     local nSplitArray = {}
  9.     while true do
  10.         local nFindLastIndex = string.find(szFullString, szSeparator, nFindStartIndex)
  11.         if not nFindLastIndex then
  12.             nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, string.len(szFullString))
  13.             break
  14.         end
  15.         nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, nFindLastIndex - 1)
  16.         nFindStartIndex = nFindLastIndex + string.len(szSeparator)
  17.         nSplitIndex = nSplitIndex + 1
  18.     end
  19.     return nSplitArray
  20. end
  21. function xgxc(szpy, qmxg)
  22.     for x = 1, #(qmxg) do
  23.         xgpy = szpy + qmxg[x]["offset"]
  24.         xglx = qmxg[x]["type"]
  25.         xgsz = qmxg[x]["value"]
  26.         xgdj = qmxg[x]["freeze"]
  27.         if xgdj == nil or xgdj == "" then
  28.             gg.setValues({[1] = {address = xgpy, flags = xglx, value = xgsz}})
  29.         else
  30.             gg.addListItems({[1] = {address = xgpy, flags = xglx, freeze = xgdj, value = xgsz}})
  31.         end
  32.         xgsl = xgsl + 1
  33.         xgjg = true
  34.     end
  35. end
  36. function xqmnb(qmnb)
  37.     gg.clearResults()
  38.     gg.setRanges(qmnb[1]["memory"])
  39.     gg.searchNumber(qmnb[3]["value"], qmnb[3]["type"])
  40.     if gg.getResultCount() == 0 then
  41.     else
  42.         gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"])
  43.         gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"])
  44.         gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"])
  45.         if gg.getResultCount() == 0 then
  46.         else
  47.             sl = gg.getResults(999999)
  48.             sz = gg.getResultCount()
  49.             xgsl = 0
  50.             if sz > 999999 then
  51.                 sz = 999999
  52.             end
  53.             for i = 1, sz do
  54.                 pdsz = true
  55.                 for v = 4, #(qmnb) do
  56.                     if pdsz == true then
  57.                         pysz = {}
  58.                         pysz[1] = {}
  59.                         pysz[1].address = sl[i].address + qmnb[v]["offset"]
  60.                         pysz[1].flags = qmnb[v]["type"]
  61.                         szpy = gg.getValues(pysz)
  62.                         pdpd = qmnb[v]["lv"] .. ";" .. szpy[1].value
  63.                         szpd = split(pdpd, ";")
  64.                         tzszpd = szpd[1]
  65.                         pyszpd = szpd[2]
  66.                         if tzszpd == pyszpd then
  67.                             pdjg = true
  68.                             pdsz = true
  69.                         else
  70.                             pdjg = false
  71.                             pdsz = false
  72.                         end
  73.                     end
  74.                 end
  75.                 if pdjg == true then
  76.                     szpy = sl[i].address
  77.                     xgxc(szpy, qmxg)
  78.                 end
  79.             end
  80.             if xgjg == true then
  81.                 gg.toast(qmnb[2]["name"] .. "" .. xgsl .. "")
  82.             else
  83.             end
  84.         end
  85.     end
  86. end
  87.  
  88.  
  89. function SearchWrite(Search, Write, Type)
  90.     gg.clearResults()
  91.     gg.setVisible(false)
  92.     gg.searchNumber(Search[1][1], Type)
  93.     local count = gg.getResultCount()
  94.     local result = gg.getResults(count)
  95.     gg.clearResults()
  96.     local data = {}
  97.     local base = Search[1][2]
  98.     if (count > 0) then
  99.         for i, v in ipairs(result) do
  100.             v.isUseful = true
  101.         end
  102.         for k = 2, #Search do
  103.             local tmp = {}
  104.             local offset = Search[k][2] - base
  105.             local num = Search[k][1]
  106.             for i, v in ipairs(result) do
  107.                 tmp[#tmp + 1] = {}
  108.                 tmp[#tmp].address = v.address + offset
  109.                 tmp[#tmp].flags = v.flags
  110.             end
  111.             tmp = gg.getValues(tmp)
  112.             for i, v in ipairs(tmp) do
  113.                 if (tostring(v.value) ~= tostring(num)) then
  114.                     result[i].isUseful = false
  115.                 end
  116.             end
  117.         end
  118.         for i, v in ipairs(result) do
  119.             if (v.isUseful) then
  120.                 data[#data + 1] = v.address
  121.             end
  122.         end
  123.         if (#data > 0) then
  124.             local t = {}
  125.             local base = Search[1][2]
  126.             for i = 1, #data do
  127.                 for k, w in ipairs(Write) do
  128.                     offset = w[2] - base
  129.                     t[#t + 1] = {}
  130.                     t[#t].address = data[i] + offset
  131.                     t[#t].flags = Type
  132.                     t[#t].value = w[1]
  133.                     if (w[3] == true) then
  134.                         local item = {}
  135.                         item[#item + 1] = t[#t]
  136.                         item[#item].freeze = false
  137.                         gg.addListItems(item)
  138.                     end
  139.                 end
  140.             end
  141.             gg.setValues(t)
  142.             gg.addListItems(t)
  143.         else
  144.             return false
  145.         end
  146.     else
  147.         return false
  148.     end
  149. end
  150.  
  151. function FindIn( tInput, Value )
  152.   for _ in pairs( tInput ) do
  153.     if Value == tInput[_] then return true end
  154.   end
  155.   return false
  156. end
  157.  
  158.  
  159. function Main1()
  160. A = gg.choice({
  161. "『 C Ó C Á I N Ị T 』",
  162. "『 E X I T 』"},nil,"🇫​🇮​🇸​🇭​🇮​🇳​🇬​ 🇲​🇪​🇳​🇺​『 HENTAI』")
  163. if A == nil then else
  164. if A == 1 then setup1() end
  165. if A == 2 then thoat() end
  166. end
  167. XGCK = -1
  168. end
  169.  
  170. function menu()
  171. local a = gg.alert("LỰA CHỌN ĐƯỜNG DẨN","SETUP","CÁ CẮN NHANH", "MENU")
  172. if a == 0 then
  173.         thoat()
  174.     elseif a == 1 then
  175.         setup()
  176.     elseif a == 2 then
  177.         ckr()
  178.     elseif a == 3 then
  179.         Main1()
  180.     end
  181. end
  182.  
  183. function setup1()
  184. local m = gg.alert( " NẢY MÀ SETUP RỒI THÌ BẤM VÀO 👉👉 ", "👉SETUP RỒI👈","👉CHƯA👈","👉TELE PÓT👈")
  185. if m == 0 then
  186.            thoat()
  187.   elseif m == 1 then
  188.          menu2()
  189.    elseif m == 2 then
  190.          menu()
  191.    elseif m == 3 then
  192.          m5()
  193.    end
  194.    end
  195.  
  196. function menu2()
  197. local b = gg.alert("LỰA CHỌN ĐƯỜNG DẨN","LỌC CÁ LỚN","LỌC ALL CÁ CÀY TIỀN"," SETUP")
  198. if b == 0 then
  199.             thoat()
  200.     elseif b == 1 then
  201.               loc()
  202.     elseif b == 2 then
  203.              loc2()
  204.      elseif b == 3 then
  205.               setup()
  206. end
  207. end
  208.  
  209. function setup()
  210. B = gg.multiChoice({
  211. "『 SETUP 32 BIT 』",
  212. "『 SETUP 64 BIT 』",
  213. "『 BACK 』"}, nil, " ☢GenZ MOD☣")
  214. if B == nil then
  215. else
  216. if B[1] == true then m1() end
  217. if B[2] == true then m2() end
  218. if B[3] == true then Main1() end
  219. end
  220. XGCK = -1
  221. end
  222.  
  223. function m1()
  224. gg.alert(' NẾU LỖI SETUP LẠI TRONG QUÁ TRÌNH SETUP K THẢ CẦN CHỜ CÓ THÔNG BÁO ')
  225. local ranges = gg.getRangesList("libil2cpp.so")
  226.     local libStart = ranges[1].start
  227.     local t = {{address = libStart + 0xB72774, flags = 8}}
  228.     for i, v in pairs(t) do
  229.         t[i].flags = 4
  230.         t[i].value = -476049406
  231.         gg.setValues(t)
  232.     end
  233.     gg.toast('LOADING....................10%')
  234.     gg.clearResults()
  235.     gg.setRanges(32)
  236.     gg.searchNumber("50364416", 4)
  237.     local t = gg.getResults(2000)
  238.     for i, v in pairs(t) do
  239.         t[i].address = t[i].address + -0x8
  240.         t[i].flags = 4
  241.     end
  242.     gg.toast('LOADING....................30%')
  243.     gg.loadResults(t)
  244.     gg.refineNumber("50364432")
  245.     local t2 = gg.getResults(2000)
  246.     for i, v in pairs(t2) do
  247.         t2[i].address = t2[i].address + 0x10
  248.         t2[i].flags = 32
  249.     end
  250.     gg.toast('LOADING....................50%')
  251.     gg.loadResults(t2)
  252.     gg.refineNumber("0")
  253.     gg.alert("QUĂNG CẦN CÂU CHỜ SETUP BẠN ƠI")
  254.     gg.sleep(5000)
  255.     gg.refineNumber("4294967299")
  256.     a = gg.getResults(10)
  257.     gg.addListItems(a)
  258.     gg.clearResults()
  259.     gg.setRanges(32)
  260.     gg.searchNumber("9,901", 4)
  261.     local arrayFish = gg.getResults(200)
  262.     for i in pairs(arrayFish) do
  263.         arrayFish[i].address = arrayFish[i].address + 0xAC
  264.         arrayFish[i].flags = 4
  265.     end
  266.     gg.toast('LOADING.....................80%')
  267.     gg.loadResults(arrayFish)
  268.     gg.refineNumber("1~30")
  269.     local thucan = gg.getListItems(1)
  270.     for i, v in pairs(thucan) do
  271.         thucan[i].address = thucan[i].address + 0x8
  272.         thucan[i].flags = 4
  273.         thucan[i].value = 0
  274.         gg.sleep(1000)
  275.     end
  276.     gg.toast('LOADING......................100%')
  277.     gg.setValues(thucan)
  278.     gg.sleep(2000)
  279.     gg.refineNumber("0")
  280. menu2()
  281. end
  282.  
  283. function m2()
  284. gg.alert('NẾU LỖI THÌ SETUP LẠI TRONG QUÁ TRÌNH SETUP K THẢ CẦN CHỜ THÔNG BÁO ')
  285. gg.setVisible(false)
  286.  
  287. gg.clearResults()
  288. a = gg.getListItems(88)
  289. gg.removeListItems(a)
  290.  
  291. gg.toast('LOADING...........10%')
  292. gg.setRanges(32)
  293. gg.searchNumber("68769841168", 32)
  294. local t = gg.getResults(2000)
  295. for i,v in pairs(t) do
  296. t[i].address = t[i].address + 0x8
  297. t[i].flags = 4
  298. end
  299. gg.toast('LOADING...........20%')
  300. gg.loadResults(t)
  301. gg.refineNumber("50364416")
  302. local t2 = gg.getResults(2000)
  303. for i,v in pairs(t2) do
  304. t2[i].address = t2[i].address + 0x70
  305. t2[i].flags = 32
  306. end
  307. gg.toast('LOADING...........30%')
  308. gg.loadResults(t2)
  309. gg.refineNumber("65792")
  310.  
  311. local t3 = gg.getResults(2000)
  312. for i,v in pairs(t3) do
  313. t3[i].address = t3[i].address + -0x5C
  314. t3[i].flags = 4
  315. end
  316. gg.toast('LOADING...........40%')
  317. gg.loadResults(t3)
  318. gg.refineNumber("0")
  319.  
  320. local t4 = gg.getResults(2000)
  321. for i,v in pairs(t4) do
  322. t4[i].address = t4[i].address + -0x4
  323. t4[i].flags = 32
  324. end
  325. gg.toast('LOADING...........50%')
  326. gg.loadResults(t4)
  327. gg.refineNumber("0")
  328. a = gg.getResults(1)
  329. gg.addListItems(a)
  330.  
  331. gg.clearResults()
  332.  
  333. gg.searchNumber("515396075576", 32)
  334. local t = gg.getResults(2000)
  335. for i,v in pairs(t) do
  336. t[i].address = t[i].address + 0x8
  337. t[i].flags = 32
  338. end
  339. gg.toast('LOADING...........60%')
  340. gg.loadResults(t)
  341.  
  342. gg.refineNumber("4")
  343. local t1 = gg.getResults(2000)
  344. for i,v in pairs(t1) do
  345. t1[i].address = t1[i].address + 0x8
  346. t1[i].flags = 32
  347. end
  348.  
  349. gg.loadResults(t1)
  350.  
  351. gg.refineNumber("8")
  352. local t2 = gg.getResults(2000)
  353. for i,v in pairs(t2) do
  354. t2[i].address = t2[i].address + 0x4
  355. t2[i].flags = 32
  356. end
  357.  
  358. gg.loadResults(t2)
  359. gg.refineNumber("0")
  360.  
  361. local t3 = gg.getResults(2000)
  362. for i,v in pairs(t3) do
  363. t3[i].address = t3[i].address + 0x4
  364. t3[i].flags = 32
  365. end
  366.  
  367. gg.loadResults(t3)
  368. gg.refineNumber("0")
  369.  
  370. local t4 = gg.getResults(2000)
  371. for i,v in pairs(t4) do
  372. t4[i].address = t4[i].address + 0x4
  373. t4[i].flags = 32
  374. end
  375.  
  376. gg.loadResults(t4)
  377. gg.refineNumber("0")
  378.  
  379. local t5 = gg.getResults(2000)
  380. for i,v in pairs(t5) do
  381. t5[i].address = t5[i].address + 0x4
  382. t5[i].flags = gg.TYPE_WORD
  383. t5[i].value = 1
  384. end
  385.  
  386. gg.loadResults(t5)
  387. gg.refineNumber("0")
  388. gg.setValues(t5)
  389.  
  390. gg.toast('LOADING...........70%')
  391.  
  392.  
  393. gg.clearResults()
  394. gg.searchNumber("9901", 4)
  395.  
  396. local x = gg.getResults(200)
  397. for i,v in pairs(x) do
  398. x[i].address = x[i].address + 0xD0
  399. x[i].flags = 32
  400. end
  401.  
  402. gg.loadResults(x)
  403. gg.refineNumber("0")
  404.  
  405. gg.alert('QUĂNG CẦN ĐI BN ÊY RỒI CHỜ NÓ TỰ SETUP ')
  406. gg.sleep(5000)
  407. gg.refineNumber("1~30")
  408. gg.sleep(50)
  409. gg.refineNumber("1~30")
  410. gg.sleep(50)
  411. gg.toast('LOADING...........80%')
  412. gg.refineNumber("1~30")
  413. gg.sleep(50)
  414. gg.refineNumber("1~30")
  415.  
  416. local t = gg.getListItems(1)
  417. for i,v in pairs(t) do
  418. t[i].address = t[i].address + 0x10
  419. t[i].flags = 4
  420. t[i].value = 0
  421. end
  422. gg.toast('LOADING...........90%')
  423. gg.setValues(t)
  424. gg.sleep(1000)
  425. gg.refineNumber("0")
  426. gg.toast('LOADING...........100%')
  427. gg.sleep(100)
  428. gg.refineNumber("0")
  429. gg.sleep(1000)
  430. menu2()
  431. end
  432.  
  433. function ckr()
  434. M = gg.multiChoice({
  435. G.."『  C Á C Ắ N N H A N H 』",
  436. N.."『  M I S S C Á 』",
  437. "『  B A C K 』"},nil, " ☢GenZ MOD☣")
  438. if M == nil then
  439.     else
  440. if M[1] == true then aa() end
  441. if M[2] == true then ab() end
  442. if M[3] == true then menu() end
  443. end
  444. XGCK = -1
  445. end
  446.  
  447. G =" [ OFF ] "
  448. function aa()
  449. if G ==" [ OFF ] " then
  450. gg.clearResults()
  451.   gg.setRanges(gg.REGION_CODE_APP)
  452.  
  453.   gg.searchNumber("-5.90526676e21;0.00999999978", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0)
  454.  
  455.   gg.getResults(1,1)
  456.  
  457.   gg.editAll("-5.90526789e21", gg.TYPE_FLOAT)
  458.  
  459.   gg.getResults(1)
  460.  
  461.   gg.editAll("1,0e10", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0)
  462.   gg.toast('ĐÃ BẬT')
  463.   G =" [ ON ✓] "
  464.   ckr()
  465.  end
  466.   end
  467.  
  468.  N =" [ OFF ] "
  469.   function ab()
  470. if N ==" [ OFF ] " then
  471. gg.clearResults()
  472. local ranges = gg.getRangesList("libil2cpp.so")
  473. local libStart = ranges[1].start
  474. local t = {{address = libStart + 0x2A4B9A4, flags = 8}}
  475. for i,v in pairs(t) do
  476. t[i].flags = 4
  477. t[i].value = -516948194
  478. gg.setValues(t)
  479. gg.toast(' SETUP THÀNH CÔNG ')
  480. N =" [ ON ✓ ] "
  481. ckr()
  482. end
  483. end
  484. end
  485.  
  486. function m5()
  487.   D = gg.multiChoice({
  488. ca.."C A M P",
  489. cb.."C A M P T H Á C",
  490. cc.."B Á N C Á💚",
  491. cd.."T H U Y Ề N 💙",
  492. ce.."M A L L",
  493. ch.."N P C T H Á M H I Ể M",
  494. cm.."H Ả I Đ Ă N G",
  495. cl.."GÓc CÂU SAU MALL",
  496. "BACK"}, nil,'🇫​🇮​🇸​🇭​🇮​🇳​🇬​ 🇲​🇪​🇳​🇺​')
  497.   if D == nil then
  498.   else
  499. if D[1] == true then tl() end
  500. if D[2] == true then tl1() end
  501. if D[3] == true then tl2() end
  502. if D[4] == true then b3() end
  503. if D[5] == true then b4() end
  504. if D[6] == true then b5() end
  505. if D[7] == true then b6() end
  506. if D[8] == true then b7() end
  507. if D[9] == true then Main1() end
  508. end
  509.  XGCK = -1
  510. end
  511.  
  512.  
  513. ca =" [ OFF ] "
  514. function tl()
  515. if ca =="[ OFF ] " then
  516. qmnb = {
  517. {["memory"] = 32},
  518. {["name"] = ""},
  519. {["value"] = -3180331008, ["type"] = 32},
  520. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  521. }
  522. qmxg = {
  523. {["value"] = -60, ["offset"] = 188, ["type"] = 16},
  524. {["value"] = -1.8, ["offset"] = 192, ["type"] = 16},
  525. {["value"] = -40, ["offset"] = 196, ["type"] = 16},
  526.  
  527. }
  528. xqmnb(qmnb)
  529. gg.clearResults()
  530. gg.toast(' SETUP THÀNH CÔNG ')
  531. ca =" [ ON ✓ ] "
  532. m5()
  533. end
  534. end
  535.  
  536. cb =" [ OFF ] "
  537. function tl1()
  538. if cb ==" [ OFF ] " then
  539. qmnb = {
  540. {["memory"] = 32},
  541. {["name"] = ""},
  542. {["value"] = -3180331008, ["type"] = 32},
  543. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  544. }
  545. qmxg = {
  546. {["value"] = 35, ["offset"] = 188, ["type"] = 16},
  547. {["value"] = -1.8, ["offset"] = 192, ["type"] = 16},
  548. {["value"] = -35, ["offset"] = 196, ["type"] = 16},
  549.  
  550. }
  551. xqmnb(qmnb)
  552. gg.clearResults()
  553. gg.toast(' SETUP THÀNH CÔNG ')
  554. cb =" [ ON ✓ ] "
  555. m5()
  556. end
  557. end
  558.  
  559. cc =" [ OFF ] "
  560. function tl2()
  561. if cc ==" [ OFF ] " then
  562. qmnb = {
  563. {["memory"] = 32},
  564. {["name"] = ""},
  565. {["value"] = -3180331008, ["type"] = 32},
  566. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  567. }
  568. qmxg = {
  569. {["value"] = 43, ["offset"] = 188, ["type"] = 16},
  570. {["value"] = -1.8, ["offset"] = 192, ["type"] = 16},
  571. {["value"] = -45, ["offset"] = 196, ["type"] = 16},
  572.  
  573. }
  574. xqmnb(qmnb)
  575. gg.clearResults()
  576. gg.toast(' SETUP THÀNH CÔNG ')
  577. cc =" [ ON ✓ ] "
  578. m5()
  579. end
  580. end
  581.  
  582. cd =" [ OFF ] "
  583. function b3()
  584. if cd ==" [ OFF ] " then
  585. qmnb = {
  586. {["memory"] = 32},
  587. {["name"] = ""},
  588. {["value"] = -3180331008, ["type"] = 32},
  589. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  590. }
  591. qmxg = {
  592. {["value"] = 245, ["offset"] = 188, ["type"] = 16},
  593. {["value"] = -1.8, ["offset"] = 192, ["type"] = 16},
  594. {["value"] = 24, ["offset"] = 196, ["type"] = 16},
  595.  
  596. }
  597. xqmnb(qmnb)
  598. gg.clearResults()
  599. gg.toast(' SETUP THÀNH CÔNG ')
  600. cd =" [ ON ✓ ] "
  601. m5()
  602. end
  603. end
  604.  
  605. ce =" [ OFF ] "
  606. function b4()
  607. if ce ==" [ OFF ] " then
  608. qmnb = {
  609. {["memory"] = 32},
  610. {["name"] = ""},
  611. {["value"] = -3180331008, ["type"] = 32},
  612. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  613. }
  614. qmxg = {
  615. {["value"] = 15, ["offset"] = 188, ["type"] = 16},
  616. {["value"] = 1, ["offset"] = 192, ["type"] = 16},
  617. {["value"] = 59, ["offset"] = 196, ["type"] = 16},
  618.  
  619. }
  620. xqmnb(qmnb)
  621. gg.clearResults()
  622. gg.toast(' SETUP THÀNH CÔNG ')
  623. ce =" [ ON ✓ ] "
  624. m5()
  625. end
  626. end
  627.  
  628. ch =" [ OFF ] "
  629. function b5()
  630. if ch ==" [ OFF ] " then
  631. qmnb = {
  632. {["memory"] = 32},
  633. {["name"] = ""},
  634. {["value"] = -3180331008, ["type"] = 32},
  635. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  636. }
  637. qmxg = {
  638. {["value"] = -79, ["offset"] = 188, ["type"] = 16},
  639. {["value"] = 1, ["offset"] = 192, ["type"] = 16},
  640. {["value"] = 50, ["offset"] = 196, ["type"] = 16},
  641.  
  642. }
  643. xqmnb(qmnb)
  644. gg.clearResults()
  645. gg.toast(' SETUP THÀNH CÔNG ')
  646. ch =" [ ON ✓ ] "
  647. m5()
  648. end
  649. end
  650.  
  651. cm =" [ OFF ] "
  652. function b6()
  653. if cm ==" [ OFF ] " then
  654. qmnb = {
  655. {["memory"] = 32},
  656. {["name"] = ""},
  657. {["value"] = -3180331008, ["type"] = 32},
  658. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  659. }
  660. qmxg = {
  661. {["value"] = 189, ["offset"] = 188, ["type"] = 16},
  662. {["value"] = -2, ["offset"] = 192, ["type"] = 16},
  663. {["value"] = 107, ["offset"] = 196, ["type"] = 16},
  664. }
  665. xqmnb(qmnb)
  666. gg.clearResults()
  667. gg.toast(' SETUP THÀNH CÔNG ')
  668. cm =" [ ON ✓ ] "
  669. m5()
  670. end
  671. end
  672.  
  673. cl =" [ OFF ] "
  674. function b7()
  675. if cl ==" [ OFF ] " then
  676. qmnb = {
  677. {["memory"] = 32},
  678. {["name"] = ""},
  679. {["value"] = -3180331008, ["type"] = 32},
  680. {["lv"] = 1, ["offset"] = 52, ["type"] = 32},
  681. }
  682. qmxg = {
  683. {["value"] = 15, ["offset"] = 188, ["type"] = 16},
  684. {["value"] = 1, ["offset"] = 192, ["type"] = 16},
  685. {["value"] = 85, ["offset"] = 196, ["type"] = 16},
  686.  
  687. }
  688. xqmnb(qmnb)
  689. gg.clearResults()
  690. gg.toast(' SETUP THÀNH CÔNG ')
  691. cl =" [ ON ✓ ] "
  692. m5()
  693. end
  694. end
  695.  
  696. function loc()
  697. C = gg.multiChoice({
  698. "『 LỌC BÓNG 4-5 』",
  699. "『 LỌC HEO PINK & BÓNG 5 』",
  700. "『 LỌC TRONG NHÀ 』",
  701. "『 LỌC HỘP SÓI 』",
  702. "『 BACK 』"},nil," ☢GenZ MOD☣")
  703. if C == nil then
  704.    else
  705. if C[1] == true then b1() end
  706. if C[2] == true then b2() end
  707. if C[3] == true then nha() end
  708. if C[4] == true then soi() end
  709. if C[5] == true then Main1() end
  710. end
  711. XGCK = -1
  712. end
  713.  
  714. function b1()
  715. if gg.getResultsCount() == 0 then
  716. gg.alert('LỖI RỒI... CHẠY LẠI SETUP ĐI BN ÊYY')
  717. setup()
  718. end
  719.  
  720. while true do
  721. gg.sleep(100)
  722. gg.setVisible(false)
  723. local r = 400
  724. local t = gg.getListItems(1)
  725. for i,v in pairs(t) do
  726. t[i].address = t[i].address + 0x9
  727. t[i].flags = 8
  728. t[i].value = 0
  729. end
  730. local result = gg.getResults(1)
  731. for i,v in pairs(result) do
  732.     if v.value == 1  then
  733. gg.toast("LV1")
  734.         gg.sleep(r)
  735.        gg.setValues(t)
  736. elseif
  737.        v.value == 2 then
  738. gg.toast("LV2")
  739.         gg.sleep(r)
  740.        gg.setValues(t)
  741. elseif
  742.        v.value == 3 then
  743. gg.toast("LV3")
  744.         gg.sleep(r)
  745.        gg.setValues(t)
  746. elseif
  747.        v.value == 4 then
  748. gg.toast("LV4")
  749. elseif
  750.        v.value == 5 then
  751. gg.toast("LV5")
  752.         gg.sleep(r)
  753.        gg.setValues(t)
  754. elseif
  755.        v.value == 6 then
  756. gg.toast("LV6")
  757.         gg.sleep(r)
  758.        gg.setValues(t)
  759. elseif
  760.        v.value == 7 then
  761. gg.toast("LV7")
  762.         gg.sleep(r)
  763.        gg.setValues(t)
  764. elseif
  765.        v.value == 8 then
  766. gg.toast("LV8")
  767.         gg.sleep(r)
  768.        gg.setValues(t)
  769. elseif
  770.        v.value == 9 then
  771. gg.toast("LV9")
  772.         gg.sleep(r)
  773.        gg.setValues(t)
  774. elseif
  775.        v.value == 10 then
  776. gg.toast("LV10")
  777.         gg.sleep(r)
  778.        gg.setValues(t)
  779. elseif
  780.        v.value == 11 then
  781. gg.toast("LV11")
  782.         gg.sleep(r)
  783.        gg.setValues(t)
  784. elseif
  785.        v.value == 12 then
  786. gg.toast("LV12")
  787.         gg.sleep(r)
  788.        gg.setValues(t)
  789. elseif
  790.        v.value == 13 then
  791. gg.toast("LV13")
  792.         gg.sleep(r)
  793.        gg.setValues(t)
  794. elseif
  795.        v.value == 14 then
  796. gg.toast("LV14")
  797.         gg.sleep(r)
  798.         gg.setValues(t)
  799. elseif
  800.        v.value == 15 then
  801. gg.toast("LV15")
  802.         gg.sleep(r)
  803.         gg.setValues(t)
  804. elseif
  805.        v.value == 16 then
  806. gg.toast("LV16")
  807.         gg.sleep(r)
  808.        gg.setValues(t)
  809. elseif
  810.        v.value == 17 then
  811. gg.toast("LV17")
  812.         gg.sleep(r)
  813.        gg.setValues(t)
  814. elseif
  815.        v.value == 18 then
  816. gg.toast("LV18")
  817.         gg.sleep(r)
  818.        gg.setValues(t)
  819. elseif
  820.        v.value == 19 then
  821. gg.toast(" LV19")
  822.         gg.sleep(r)
  823.        gg.setValues(t)
  824. elseif
  825.        v.value == 20 then
  826. gg.toast(" LV20")
  827.         gg.sleep(r)
  828.        gg.setValues(t)
  829. elseif
  830.        v.value == 21 then
  831. gg.toast("BÓNG 4 THƯỜNG")
  832. elseif
  833.        v.value == 22 then
  834. gg.toast("BÓNG 4")
  835. elseif
  836.        v.value == 23 then
  837. gg.toast(" LV23")
  838. elseif
  839.        v.value == 24 then
  840. gg.toast("BÓNG 4 VN")
  841. elseif
  842.        v.value == 25 then
  843. gg.toast(" LV25")
  844. elseif
  845.        v.value == 26 then
  846. gg.toast(" LV26")
  847. elseif
  848.        v.value == 27 then
  849. gg.toast(" LV27")
  850. elseif
  851.        v.value == 28 then
  852. gg.toast("BÓNG 5")
  853. elseif
  854.        v.value == 29 then
  855. gg.toast(" LV29")
  856. elseif
  857.        v.value == 30 then
  858. gg.toast("BÓNG 5 VN") 
  859. end
  860. gg.sleep(10)
  861. end
  862. end
  863. end
  864.  
  865.  
  866. function b2()
  867. if gg.getResultsCount() == 0 then
  868. gg.alert('LỖI RỒI... CHẠY LẠI SETUP ĐI BN ÊYY')
  869. setup()
  870. end
  871.  
  872. while true do
  873. gg.sleep(100)
  874. gg.setVisible(false)
  875. local r = 400
  876. local t = gg.getListItems(1)
  877. for i,v in pairs(t) do
  878. t[i].address = t[i].address + 0x9
  879. t[i].flags = 8
  880. t[i].value = 0
  881. end
  882. local result = gg.getResults(1)
  883. for i,v in pairs(result) do
  884.     if v.value == 1  then
  885. gg.toast("LV1")
  886.         gg.sleep(r)
  887.        gg.setValues(t)
  888. elseif
  889.        v.value == 2 then
  890. gg.toast("LV2")
  891.         gg.sleep(r)
  892.        gg.setValues(t)
  893. elseif
  894.        v.value == 3 then
  895. gg.toast("LV3")
  896.         gg.sleep(r)
  897.        gg.setValues(t)
  898. elseif
  899.        v.value == 4 then
  900. gg.toast("LV4")
  901. elseif
  902.        v.value == 5 then
  903. gg.toast("LV5")
  904.         gg.sleep(r)
  905.        gg.setValues(t)
  906. elseif
  907.        v.value == 6 then
  908. gg.toast("LV6")
  909.         gg.sleep(r)
  910.        gg.setValues(t)
  911. elseif
  912.        v.value == 7 then
  913. gg.toast("LV7")
  914.         gg.sleep(r)
  915.        gg.setValues(t)
  916. elseif
  917.        v.value == 8 then
  918. gg.toast("LV8")
  919.         gg.sleep(r)
  920.        gg.setValues(t)
  921. elseif
  922.        v.value == 9 then
  923. gg.toast("LV9")
  924.         gg.sleep(r)
  925.        gg.setValues(t)
  926. elseif
  927.        v.value == 10 then
  928. gg.toast("LV10")
  929.         gg.sleep(r)
  930.        gg.setValues(t)
  931. elseif
  932.        v.value == 11 then
  933. gg.toast("LV11")
  934.         gg.sleep(r)
  935.        gg.setValues(t)
  936. elseif
  937.        v.value == 12 then
  938. gg.toast("LV12")
  939.         gg.sleep(r)
  940.        gg.setValues(t)
  941. elseif
  942.        v.value == 13 then
  943. gg.toast("LV13")
  944.         gg.sleep(r)
  945.        gg.setValues(t)
  946. elseif
  947.        v.value == 14 then
  948. gg.toast("LV14")
  949.         gg.sleep(r)
  950.         gg.setValues(t)
  951. elseif
  952.        v.value == 15 then
  953. gg.toast("LV15")
  954.         gg.sleep(r)
  955.         gg.setValues(t)
  956. elseif
  957.        v.value == 16 then
  958. gg.toast("LV16")
  959.         gg.sleep(r)
  960.        gg.setValues(t)
  961. elseif
  962.        v.value == 17 then
  963. gg.toast("LV17")
  964.         gg.sleep(r)
  965.        gg.setValues(t)
  966. elseif
  967.        v.value == 18 then
  968. gg.toast("LV18")
  969.         gg.sleep(r)
  970.        gg.setValues(t)
  971. elseif
  972.        v.value == 19 then
  973. gg.toast(" LV19")
  974.         gg.sleep(r)
  975.        gg.setValues(t)
  976. elseif
  977.        v.value == 20 then
  978. gg.toast(" LV20")
  979.         gg.sleep(r)
  980.        gg.setValues(t)
  981. elseif
  982.        v.value == 21 then
  983. gg.toast("BÓNG 4 THƯỜNG")
  984. gg.sleep(r)
  985.        gg.setValues(t)
  986. elseif
  987.        v.value == 22 then
  988. gg.toast("BÓNG 4")
  989. gg.sleep(r)
  990.        gg.setValues(t)
  991. elseif
  992.        v.value == 23 then
  993. gg.toast(" LV23")
  994. gg.sleep(r)
  995.        gg.setValues(t)
  996. elseif
  997.        v.value == 24 then
  998. gg.toast("BÓNG 4 VN")
  999. gg.sleep(r)
  1000.        gg.setValues(t)
  1001. elseif
  1002.        v.value == 25 then
  1003. gg.toast(" LV25")
  1004. gg.sleep(r)
  1005.        gg.setValues(t)
  1006. elseif
  1007.        v.value == 26 then
  1008. gg.toast(" LV26")
  1009. gg.sleep(r)
  1010.        gg.setValues(t)
  1011. elseif
  1012.        v.value == 27 then
  1013. gg.toast(" LV27")
  1014. gg.sleep(r)
  1015.        gg.setValues(t)
  1016. elseif
  1017.        v.value == 28 then
  1018. gg.toast("BÓNG 5")
  1019. elseif
  1020.        v.value == 29 then
  1021. gg.toast(" LV29")
  1022. elseif
  1023.        v.value == 30 then
  1024. gg.toast("BÓNG 5 VN") 
  1025. end
  1026. gg.sleep(10)
  1027. end
  1028. end
  1029. end
  1030.  
  1031. function nha()
  1032. if gg.getResultsCount() == 0 then
  1033. gg.alert('LỖI RỒI... CHẠY LẠI SETUP ĐI BN ÊYY')
  1034. setup()
  1035. end
  1036.  
  1037. while true do
  1038. gg.sleep(100)
  1039. gg.setVisible(false)
  1040. local r = 400
  1041. local t = gg.getListItems(1)
  1042. for i,v in pairs(t) do
  1043. t[i].address = t[i].address + 0x9
  1044. t[i].flags = 8
  1045. t[i].value = 0
  1046. end
  1047. local result = gg.getResults(1)
  1048. for i,v in pairs(result) do
  1049.     if v.value == 1  then
  1050. gg.toast("LV1")
  1051.         gg.sleep(r)
  1052.        gg.setValues(t)
  1053. elseif
  1054.        v.value == 2 then
  1055. gg.toast("LV2")
  1056.         gg.sleep(r)
  1057.        gg.setValues(t)
  1058. elseif
  1059.        v.value == 3 then
  1060. gg.toast("LV3")
  1061.         gg.sleep(r)
  1062.        gg.setValues(t)
  1063. elseif
  1064.        v.value == 4 then
  1065. gg.toast("KỲ NHÔNG")
  1066. elseif
  1067.        v.value == 5 then
  1068. gg.toast("LV5")
  1069.         gg.sleep(r)
  1070.        gg.setValues(t)
  1071. elseif
  1072.        v.value == 6 then
  1073. gg.toast("KỲ NHÔNG VN")
  1074. elseif
  1075.        v.value == 7 then
  1076. gg.toast("LV7")
  1077.         gg.sleep(r)
  1078.        gg.setValues(t)
  1079. elseif
  1080.        v.value == 8 then
  1081. gg.toast("LV8")
  1082.         gg.sleep(r)
  1083.        gg.setValues(t)
  1084. elseif
  1085.        v.value == 9 then
  1086. gg.toast("LV9")
  1087.         gg.sleep(r)
  1088.        gg.setValues(t)
  1089. elseif
  1090.        v.value == 10 then
  1091. gg.toast("LV10")
  1092.         gg.sleep(r)
  1093.        gg.setValues(t)
  1094. elseif
  1095.        v.value == 11 then
  1096. gg.toast("LV11")
  1097.         gg.sleep(r)
  1098.        gg.setValues(t)
  1099. elseif
  1100.        v.value == 12 then
  1101. gg.toast("LV12")
  1102.         gg.sleep(r)
  1103.        gg.setValues(t)
  1104. elseif
  1105.        v.value == 13 then
  1106. gg.toast("LV13")
  1107.         gg.sleep(r)
  1108.        gg.setValues(t)
  1109. elseif
  1110.        v.value == 14 then
  1111. gg.toast("LV14")
  1112.         gg.sleep(r)
  1113.         gg.setValues(t)
  1114. elseif
  1115.        v.value == 15 then
  1116. gg.toast("LV15")
  1117.         gg.sleep(r)
  1118.         gg.setValues(t)
  1119. elseif
  1120.        v.value == 16 then
  1121. gg.toast("LV16")
  1122.         gg.sleep(r)
  1123.        gg.setValues(t)
  1124. elseif
  1125.        v.value == 17 then
  1126. gg.toast("LV17")
  1127.         gg.sleep(r)
  1128.        gg.setValues(t)
  1129. elseif
  1130.        v.value == 18 then
  1131. gg.toast("LV18")
  1132.         gg.sleep(r)
  1133.        gg.setValues(t)
  1134. elseif
  1135.        v.value == 19 then
  1136. gg.toast(" LV19")
  1137.         gg.sleep(r)
  1138.        gg.setValues(t)
  1139. elseif
  1140.        v.value == 20 then
  1141. gg.toast(" LV20")
  1142.         gg.sleep(r)
  1143.        gg.setValues(t)
  1144. elseif
  1145.        v.value == 21 then
  1146. gg.toast("CÁ HỔ THƯỜNG ")
  1147. elseif
  1148.        v.value == 22 then
  1149. gg.toast(" CÁ HỔ ")
  1150. elseif
  1151.        v.value == 23 then
  1152. gg.toast(" LV23")
  1153. elseif
  1154.        v.value == 24 then
  1155. gg.toast("CÁ HỔ VN")
  1156. elseif
  1157.        v.value == 25 then
  1158. gg.toast(" LV25")
  1159. gg.sleep(r)
  1160.        gg.setValues(t)
  1161. elseif
  1162.        v.value == 26 then
  1163. gg.toast(" LV26")
  1164. gg.sleep(r)
  1165.        gg.setValues(t)
  1166. elseif
  1167.        v.value == 27 then
  1168. gg.toast(" LV27")
  1169. gg.sleep(r)
  1170.        gg.setValues(t)
  1171. elseif
  1172.        v.value == 28 then
  1173. gg.toast("CÁ SẤU")
  1174. elseif
  1175.        v.value == 29 then
  1176. gg.toast(" LV29")
  1177. elseif
  1178.        v.value == 30 then
  1179. gg.toast("CÁ SẤU VN")   
  1180. end
  1181. gg.sleep(10)
  1182. end
  1183. end
  1184. end
  1185.  
  1186. function soi()
  1187. gg.alert(' NÀY CHỈ DÙNG CHO AE NÀO CÓ PLUS VỚI TIỀN ĐANG NHÌU HÊY CHỨ LỌC NÀY KHÓ RA LẮM NICK THƯỜNG ĐỪNG LỌC TỐN LƯỢT CÂU ')
  1188.  
  1189. if gg.getResultsCount() == 0 then
  1190. gg.alert('LỖI RỒI... CHẠY LẠI SETUP ĐI BN ÊYY')
  1191. setup()
  1192. end
  1193.  
  1194. while true do
  1195. gg.sleep(100)
  1196. gg.setVisible(false)
  1197. local r = 400
  1198. local t = gg.getListItems(1)
  1199. for i,v in pairs(t) do
  1200. t[i].address = t[i].address + 0x9
  1201. t[i].flags = 8
  1202. t[i].value = 0
  1203. end
  1204. local result = gg.getResults(1)
  1205. for i,v in pairs(result) do
  1206.     if v.value == 1  then
  1207. gg.toast("LV1")
  1208.         gg.sleep(r)
  1209.        gg.setValues(t)
  1210. elseif
  1211.        v.value == 2 then
  1212. gg.toast("LV2")
  1213.         gg.sleep(r)
  1214.        gg.setValues(t)
  1215. elseif
  1216.        v.value == 3 then
  1217. gg.toast("LV3")
  1218.         gg.sleep(r)
  1219.        gg.setValues(t)
  1220. elseif
  1221.        v.value == 4 then
  1222. gg.toast(" k phải sói đâu ")
  1223. elseif
  1224.        v.value == 5 then
  1225. gg.toast("LV5")
  1226.         gg.sleep(r)
  1227.        gg.setValues(t)
  1228. elseif
  1229.        v.value == 6 then
  1230. gg.toast("SÓI VỀ RỒI LƯỢM LÚA")
  1231. elseif
  1232.        v.value == 7 then
  1233. gg.toast("LV7")
  1234.         gg.sleep(r)
  1235.        gg.setValues(t)
  1236. elseif
  1237.        v.value == 8 then
  1238. gg.toast("LV8")
  1239.         gg.sleep(r)
  1240.        gg.setValues(t)
  1241. elseif
  1242.        v.value == 9 then
  1243. gg.toast("LV9")
  1244.         gg.sleep(r)
  1245.        gg.setValues(t)
  1246. elseif
  1247.        v.value == 10 then
  1248. gg.toast("LV10")
  1249. gg.sleep(r)
  1250.        gg.setValues(t)
  1251. elseif
  1252.        v.value == 11 then
  1253. gg.toast("LV11")
  1254.         gg.sleep(r)
  1255.        gg.setValues(t)
  1256. elseif
  1257.        v.value == 12 then
  1258. gg.toast("LV12")
  1259. gg.sleep(r)
  1260.        gg.setValues(t)
  1261. elseif
  1262.        v.value == 13 then
  1263. gg.toast("LV13")
  1264.         gg.sleep(r)
  1265.        gg.setValues(t)
  1266. elseif
  1267.        v.value == 14 then
  1268. gg.toast("LV14")
  1269. gg.sleep(r)
  1270.        gg.setValues(t)
  1271. elseif
  1272.        v.value == 15 then
  1273. gg.toast("LV15")
  1274.         gg.sleep(r)
  1275.         gg.setValues(t)
  1276. elseif
  1277.        v.value == 16 then
  1278. gg.toast("LV16")
  1279.         gg.sleep(r)
  1280.        gg.setValues(t)
  1281. elseif
  1282.        v.value == 17 then
  1283. gg.toast("LV17")
  1284. gg.sleep(r)
  1285.        gg.setValues(t)
  1286. elseif
  1287.        v.value == 18 then
  1288. gg.toast("LV18")
  1289.         gg.sleep(r)
  1290.        gg.setValues(t)
  1291. elseif
  1292.        v.value == 19 then
  1293. gg.toast(" LV19")
  1294.         gg.sleep(r)
  1295.        gg.setValues(t)
  1296. elseif
  1297.        v.value == 20 then
  1298. gg.toast(" LV20")
  1299.         gg.sleep(r)
  1300.        gg.setValues(t)
  1301. elseif
  1302.        v.value == 21 then
  1303. gg.toast("BÓNG 4 THƯỜNG")
  1304. gg.sleep(r)
  1305.        gg.setValues(t)
  1306. elseif
  1307.        v.value == 22 then
  1308. gg.toast("BÓNG 4")
  1309. elseif
  1310.        v.value == 23 then
  1311. gg.toast(" LV23")
  1312. elseif
  1313.        v.value == 24 then
  1314. gg.toast("BÓNG 4 VN")
  1315. elseif
  1316.        v.value == 25 then
  1317. gg.toast(" LV25")
  1318. elseif
  1319.        v.value == 26 then
  1320. gg.toast(" LV26")
  1321. elseif
  1322.        v.value == 27 then
  1323. gg.toast(" LV27")
  1324. elseif
  1325.        v.value == 28 then
  1326. gg.toast("BÓNG 5")
  1327. elseif
  1328.        v.value == 29 then
  1329. gg.toast(" LV29")
  1330. elseif
  1331.        v.value == 30 then
  1332. gg.toast("BÓNG 5 VN") 
  1333. end
  1334. gg.sleep(10)
  1335. end
  1336. end
  1337. end
  1338.  
  1339. function loc2()
  1340. if gg.getResultsCount() == 0 then
  1341. gg.alert('LỖI RỒI... CHẠY LẠI SETUP ĐI BN ÊYY')
  1342. setup()
  1343. end
  1344.  
  1345. while true do
  1346. gg.sleep(100)
  1347. gg.setVisible(false)
  1348. local r = 400
  1349. local t = gg.getListItems(1)
  1350. for i,v in pairs(t) do
  1351. t[i].address = t[i].address + 0x9
  1352. t[i].flags = 8
  1353. t[i].value = 0
  1354. end
  1355. local result = gg.getResults(1)
  1356. for i,v in pairs(result) do
  1357.     if v.value == 1  then
  1358.         gg.sleep(r)
  1359.        gg.setValues(t)
  1360. gg.toast("lv1")
  1361. elseif
  1362.        v.value == 2 then
  1363. gg.toast(" lv2")
  1364. elseif
  1365.        v.value == 3 then
  1366. gg.toast("lv3")
  1367. elseif
  1368.        v.value == 4 then
  1369. gg.toast("lv4")
  1370. elseif
  1371.        v.value == 5 then
  1372. gg.toast("lv5")
  1373. elseif
  1374.        v.value == 6 then
  1375. gg.toast("lv6")
  1376. elseif
  1377.        v.value == 7 then
  1378.         gg.sleep(r)
  1379.        gg.setValues(t)
  1380. gg.toast("lv7")
  1381. elseif
  1382.        v.value == 8 then
  1383. gg.toast("lv8..")
  1384. elseif
  1385.        v.value == 9 then
  1386. gg.toast( " lv9")
  1387. elseif
  1388.        v.value == 10 then
  1389. gg.toast("lv10")
  1390. elseif
  1391.        v.value == 11 then
  1392. gg.toast(" Cá Lv11 ")
  1393. elseif
  1394.        v.value == 12 then
  1395. gg.toast(" lv12")
  1396. elseif
  1397.        v.value == 13 then
  1398.         gg.sleep(r)
  1399.        gg.setValues(t)
  1400. gg.toast("lv13")
  1401. elseif
  1402.        v.value == 14 then
  1403. gg.toast("lv14")
  1404. elseif
  1405.        v.value == 15 then
  1406. gg.toast("lv15")
  1407. elseif
  1408.        v.value == 16 then
  1409. gg.toast("lv16")
  1410. elseif
  1411.        v.value == 17 then
  1412. gg.toast("lv17")
  1413. elseif
  1414. v.value == 18 then
  1415. gg.toast("lv18")
  1416. elseif
  1417.        v.value == 19 then
  1418. gg.toast("lv19")
  1419. elseif
  1420.        v.value == 20 then
  1421. gg.toast("lv20")
  1422. elseif
  1423.        v.value == 21 then
  1424. gg.toast("BÓNG 4 THƯỜNG")
  1425. elseif
  1426.        v.value == 22 then
  1427. gg.toast("BÓNG 4 ")
  1428. elseif
  1429.        v.value == 23 then
  1430. gg.toast(" lv23")
  1431. elseif
  1432.        v.value == 24 then
  1433. gg.toast("BÓNG 4 VM")
  1434. elseif
  1435.        v.value == 25 then
  1436.        gg.toast("lv25")
  1437. elseif
  1438.        v.value == 26 then
  1439.        gg.toast("lv26")
  1440. elseif
  1441.        v.value == 27 then
  1442.        gg.toast("lv27")
  1443. elseif
  1444.        v.value == 28 then
  1445. gg.toast("BÓNG 5")
  1446. elseif
  1447.        v.value == 29 then
  1448. elseif
  1449.        v.value == 30 then
  1450. gg.toast("BÓNG 5 VM") 
  1451. end
  1452. gg.sleep(10)
  1453. end
  1454. end
  1455. end
  1456.  
  1457. function thoat()
  1458.  
  1459. os.exit()
  1460. gg.setVisible(true)
  1461. end
  1462.  
  1463.  
  1464. while true do
  1465. if gg.isVisible(true) then
  1466. XGCK = 1
  1467. gg.setVisible(false)
  1468. end
  1469. if XGCK == 1 then Main1() end
  1470. end
Add Comment
Please, Sign In to add comment