Advertisement
Fsc1437

private.lua

Sep 5th, 2020 (edited)
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 43.41 KB | None | 0 0
  1. on  =  '✅'
  2. off  =  '❌'
  3. para  =  off
  4. function split(szFullString, szSeparator) local nFindStartIndex = 1 local nSplitIndex = 1 local nSplitArray = {} while true do local nFindLastIndex = string.find (szFullString, szSeparator, nFindStartIndex) if not nFindLastIndex then nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, string.len (szFullString)) break end nSplitArray[nSplitIndex] = string.sub (szFullString, nFindStartIndex, nFindLastIndex - 1) nFindStartIndex = nFindLastIndex + string.len (szSeparator) nSplitIndex = nSplitIndex + 1 end return nSplitArray end function xgxc(szpy, qmxg) for x = 1, #(qmxg) do xgpy = szpy + qmxg[x]["offset"] xglx = qmxg[x]["type"] xgsz = qmxg[x]["value"] xgdj = qmxg[x]["freeze"] if xgdj == nil or xgdj == "" then CG.setValues({[1] = {address = xgpy, flags = xglx, value = xgsz}}) else CG.addListItems({[1] = {address = xgpy, flags = xglx, freeze = xgdj, value = xgsz}}) end xgsl = xgsl + 1 xgjg = true end end function xqmnb(qmnb) CG.clearResults() CG.setRanges(qmnb[1]["memory"]) CG.searchNumber(qmnb[3]["value"], qmnb[3]["type"]) if CG.getResultCount() == 0 then CG.toast(qmnb[2]["name"] .. "开启失败") else CG.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) CG.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) CG.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) if CG.getResultCount() == 0 then CG.toast(qmnb[2]["name"] .. "开启失败") else sl = CG.getResults(999999) sz = CG.getResultCount() xgsl = 0 if sz > 999999 then sz = 999999 end for i = 1, sz do pdsz = true for v = 4, #(qmnb) do if pdsz == true then pysz = {} pysz[1] = {} pysz[1].address = sl[i].address + qmnb[v]["offset"] pysz[1].flags = qmnb[v]["type"] szpy = CG.getValues(pysz) pdpd = qmnb[v]["lv"] .. ";" .. szpy[1].value szpd = split(pdpd, ";") tzszpd = szpd[1] pyszpd = szpd[2] if tzszpd == pyszpd then pdjg = true pdsz = true else pdjg = false pdsz = false end end end if pdjg == true then szpy = sl[i].address xgxc(szpy, qmxg) end end if xgjg == true then CG.toast(qmnb[2]["name"] .. "开启成功,一共修改" .. xgsl .. "条数据") else CG.toast(qmnb[2]["name"] .. "未搜索到数据,开启失败") end end end end function SearchWrite(Search, Write, Type) CG.clearResults() CG.setVisible(false) CG.searchNumber(Search[1][1], Type) local count = CG.getResultCount() local result = CG.getResults(count) CG.clearResults() local data = {} local base = Search[1][2] if (count > 0) then for i, v in ipairs(result) do v.isUseful = true end for k=2, #Search do local tmp = {} local offset = Search[k][2] - base local num = Search[k][1] for i, v in ipairs(result) do tmp[#tmp+1] = {} tmp[#tmp].address = v.address + offset tmp[#tmp].flags = v.flags end tmp = CG.getValues(tmp) for i, v in ipairs(tmp) do if ( tostring(v.value) ~= tostring(num) ) then result[i].isUseful = false end end end for i, v in ipairs(result) do if (v.isUseful) then data[#data+1] = v.address end end if (#data > 0) then local t = {} local base = Search[1][2] for i=1, #data do for k, w in ipairs(Write) do offset = w[2] - base t[#t+1] = {} t[#t].address = data[i] + offset t[#t].flags = Type t[#t].value = w[1] if (w[3] == true) then local item = {} item[#item+1] = t[#t] item[#item].freeze = true CG.addListItems(item) end end end CG.setValues(t) CG.toast("开启成功,一共修改"..#t.."条数据") CG.addListItems(t) else CG.toast("未搜索到数据,开启失败", false) return false end else CG.toast("Not Found") return false end end
  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(
  11.             szFullString,
  12.             szSeparator,
  13.             nFindStartIndex
  14.         )
  15.         if not nFindLastIndex then
  16.             nSplitArray[nSplitIndex] = string.sub(
  17.                 szFullString,
  18.                 nFindStartIndex,
  19.                 string.len(szFullString)
  20.             )
  21.             break
  22.         end
  23.         nSplitArray[nSplitIndex] = string.sub(
  24.             szFullString,
  25.             nFindStartIndex,
  26.             nFindLastIndex - 1
  27.         )
  28.         nFindStartIndex = nFindLastIndex + string.len(szSeparator)
  29.         nSplitIndex = nSplitIndex + 1
  30.     end
  31.     return nSplitArray
  32. end
  33. function xgxc(szpy, qmxg)
  34.     for x = 1, #(qmxg) do
  35.         xgpy = szpy + qmxg[x]["offset"]
  36.         xglx = qmxg[x]["type"]
  37.         xgsz = qmxg[x]["value"]
  38.         CG.setValues({[1] = {address = xgpy, flags = xglx, value = xgsz}})
  39.         xgsl = xgsl + 1
  40.     end
  41. end
  42. function xqmnb(karar)
  43.     CG.clearResults()
  44.     CG.setRanges(karar[1]["memory"])
  45.     CG.searchNumber(karar[3]["value"], karar[3]["type"])
  46.     if CG.getResultCount() == 0 then
  47.         CG.toast(karar[2]["name"] .. "فشل التفعيل")
  48.     else
  49.         CG.refineNumber(karar[3]["value"], karar[3]["type"])
  50.         CG.refineNumber(karar[3]["value"], karar[3]["type"])
  51.         CG.refineNumber(karar[3]["value"], karar[3]["type"])
  52.         if CG.getResultCount() == 0 then
  53.             CG.toast(karar[2]["name"] .. "فشل التفعيل")
  54.         else
  55.             sl = CG.getResults(999999)
  56.             sz = CG.getResultCount()
  57.             xgsl = 0
  58.             if sz > 999999 then
  59.                 sz = 999999
  60.             end
  61.             for i = 1, sz do
  62.                 pdsz = true
  63.                 for v = 4, #(karar) do
  64.                     if pdsz == true then
  65.                         pysz = {}
  66.                         pysz[1] = {}
  67.                         pysz[1].address = sl[i].address + karar[v]["offset"]
  68.                         pysz[1].flags = karar[v]["type"]
  69.                         szpy = CG.getValues(pysz)
  70.                         pdpd = karar[v]["lv"] .. ";" .. szpy[1].value
  71.                         szpd = split(pdpd, ";")
  72.                         tzszpd = szpd[1]
  73.                         pyszpd = szpd[2]
  74.                         if tzszpd == pyszpd then
  75.                             pdjg = true
  76.                             pdsz = true
  77.                         else
  78.                             pdjg = false
  79.                             pdsz = false
  80.                         end
  81.                     end
  82.                 end
  83.                 if pdjg == true then
  84.                     szpy = sl[i].address
  85.                     xgxc(szpy, qmxg)
  86.                     xgjg = true
  87.                 end
  88.             end
  89.             if xgjg == true then
  90.                 CG.toast(karar[2]["name"] .. "Modified " .. xgsl .. " Values🔍")
  91.             else
  92.                 CG.toast(karar[2]["name"] .. "فشل تفعيل")
  93.             end
  94.         end
  95.     end
  96. end
  97. function split(szFullString, szSeparator) local nFindStartIndex = 1 local nSplitIndex = 1 local nSplitArray = {} while true do local nFindLastIndex = string.find (szFullString, szSeparator, nFindStartIndex) if not nFindLastIndex then nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, string.len (szFullString)) break end nSplitArray[nSplitIndex] = string.sub (szFullString, nFindStartIndex, nFindLastIndex - 1) nFindStartIndex = nFindLastIndex + string.len (szSeparator) nSplitIndex = nSplitIndex + 1 end return nSplitArray end function xgxc(szpy, qmxg) for x = 1, #(qmxg) do xgpy = szpy + qmxg[x]["offset"] xglx = qmxg[x]["type"] xgsz = qmxg[x]["value"] xgdj = qmxg[x]["freeze"] if xgdj == nil or xgdj == "" then CG.setValues({[1] = {address = xgpy, flags = xglx, value = xgsz}}) else CG.addListItems({[1] = {address = xgpy, flags = xglx, freeze = xgdj, value = xgsz}}) end xgsl = xgsl + 1 xgjg = true end end function xqmnb(qmnb) CG.clearResults() CG.setRanges(qmnb[1]["memory"]) CG.searchNumber(qmnb[3]["value"], qmnb[3]["type"]) if CG.getResultCount() == 0 then CG.toast(qmnb[2]["name"] .. "开启失败") else CG.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) CG.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) CG.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) if CG.getResultCount() == 0 then CG.toast(qmnb[2]["name"] .. "开启失败") else sl = CG.getResults(999999) sz = CG.getResultCount() xgsl = 0 if sz > 999999 then sz = 999999 end for i = 1, sz do pdsz = true for v = 4, #(qmnb) do if pdsz == true then pysz = {} pysz[1] = {} pysz[1].address = sl[i].address + qmnb[v]["offset"] pysz[1].flags = qmnb[v]["type"] szpy = CG.getValues(pysz) pdpd = qmnb[v]["lv"] .. ";" .. szpy[1].value szpd = split(pdpd, ";") tzszpd = szpd[1] pyszpd = szpd[2] if tzszpd == pyszpd then pdjg = true pdsz = true else pdjg = false pdsz = false end end end if pdjg == true then szpy = sl[i].address xgxc(szpy, qmxg) end end if xgjg == true then CG.toast(qmnb[2]["name"] .. "开启成功,一共修改" .. xgsl .. "条数据") else CG.toast(qmnb[2]["name"] .. "未搜索到数据,开启失败") end end end end function SearchWrite(Search, Write, Type) CG.clearResults() CG.setVisible(false) CG.searchNumber(Search[1][1], Type) local count = CG.getResultCount() local result = CG.getResults(count) CG.clearResults() local data = {} local base = Search[1][2] if (count > 0) then for i, v in ipairs(result) do v.isUseful = true end for k=2, #Search do local tmp = {} local offset = Search[k][2] - base local num = Search[k][1] for i, v in ipairs(result) do tmp[#tmp+1] = {} tmp[#tmp].address = v.address + offset tmp[#tmp].flags = v.flags end tmp = CG.getValues(tmp) for i, v in ipairs(tmp) do if ( tostring(v.value) ~= tostring(num) ) then result[i].isUseful = false end end end for i, v in ipairs(result) do if (v.isUseful) then data[#data+1] = v.address end end if (#data > 0) then local t = {} local base = Search[1][2] for i=1, #data do for k, w in ipairs(Write) do offset = w[2] - base t[#t+1] = {} t[#t].address = data[i] + offset t[#t].flags = Type t[#t].value = w[1] if (w[3] == true) then local item = {} item[#item+1] = t[#t] item[#item].freeze = true CG.addListItems(item) end end end CG.setValues(t) CG.toast("开启成功,一共修改"..#t.."条数据") CG.addListItems(t) else CG.toast("未搜索到数据,开启失败", false) return false end else CG.toast("Not Found") return false end end
  98. if os.date('%Y%m%d') > '20201002' then
  99. print(('⚠️ Script Expired :\nJoin Telegaram : @CGCheatS🤗'))
  100. CG.alert('⚠️ Script Expired :\nJoin Telegaram : @CGCheatS🤗', '❎ Exit')
  101. os.exit()
  102.   end
  103. CG.alert("𝐖ᴇʟᴄᴏᴍᴇ  𝐓ᴏ  𝐂𝐆𝐂ʜᴇᴀᴛ𝐬  𝐏ᴜʙʟɪᴄ  𝐒ᴄʀɪᴘᴛ\n\n══════════════════\n\n𝐆ᴀᴍᴇ  𝐒ᴇᴛᴛɪɴɢ𝐬⚙️\n𝐆ʀᴀᴘʜɪᴄ𝐬🏙️-  𝐒ᴍᴏᴏᴛʜ\n𝐆𝐆  𝐇ɪᴅᴇ⛩️-  𝟐,  𝟑\n𝐁ʏᴘᴀ𝐬𝐬  𝐌ᴏᴅᴇ  𝐏ᴛʀᴀᴄᴇ🛡️-  𝐍ᴏᴛʜɪɴɢ\n𝐅ʀᴇᴇᴢᴇ  𝐈ɴᴛᴇʀᴡᴀʟ🤺-  𝟎\n𝐃ᴀᴛᴀ  𝐈ɴ  𝐑ᴀᴍ⛄-  ɴᴏ\n𝐏ʀᴇᴠᴇɴᴛ  𝐔ɴʟᴏᴀᴅ🎮-  ʟᴇᴠᴇʟ  𝟐\n══════════════════","『𝐈  ❤𝐔ɴᴅᴇʀ𝐬ᴛᴀɴᴅ』")
  104. Pass = CG.prompt({"🔒Enter Your Password"},nil,{"text"})
  105. if Pass[1] == "NEWUPDATE" then
  106. else
  107. CG.alert("⛔Wrong Password")
  108. os.exit()
  109. end
  110. function  HOME()
  111. MN  =  CG.multiChoice({
  112. "⋹ 𝐀n𝐭𝐢𝐛𝐚n  𝐌𝐞𝐧𝐮",
  113. "⋹ 𝐖𝐚𝐥𝐥  𝐇𝐚𝐜𝐤  +  𝐁𝐨𝐝𝐲  𝐂𝐨𝐥𝐨𝐮𝐫𝐬",
  114. "⋹ 𝐒𝐚𝐟𝐞  𝐍𝐨  𝐑𝐞𝐜𝐨𝐢𝐥  𝟗𝟓%",
  115. "⋹ 𝐀n𝐭𝐞𝐞𝐧𝐚  𝐏𝐥𝐚𝐲𝐞𝐫𝐬",
  116. "⋹ 𝐒𝐚𝐟𝐞  𝐀𝐢𝐦𝐛𝐨𝐭  𝐆𝐚𝐦𝐞",
  117. "⋹ 𝐀𝐮𝐭𝐨  𝐇𝐞𝐚𝐝𝐬𝐡𝐨𝐭  𝟗𝟗%",
  118. "⋹ 𝐌𝐚𝐠𝐢𝐜 𝐁𝐮𝐥𝐥𝐞𝐭 𝐁𝐫𝐮𝐭𝐚𝐥",
  119. "⋹ 𝐒𝐚𝐟𝐞  𝐖𝐢𝐝𝐞  𝐕𝐢𝐞𝐰",
  120. "⋹ 𝐒𝐚𝐟𝐞  𝐅𝐨𝐠  𝐑𝐞𝐦𝐨𝐯𝐞𝐫",
  121. "⋹ 𝐍𝐨  𝐆𝐫𝐚𝐬𝐬  𝐋𝐨𝐛𝐛𝐲",
  122. "⋹ 𝐁𝐥𝐚𝐜𝐤  𝐒𝐤𝐲  [𝐒𝐃]",
  123. "⋹ 𝐒𝐩𝐞𝐞𝐝  𝐕𝐞𝐡𝐢𝐜𝐥𝐞𝐬",
  124. "⋹ 𝐅𝐥𝐚𝐬𝐡  [𝐒𝐚𝐟𝐞]"..para,
  125. "Ꭼ𝐗ᏆᎢ"
  126. }, nil, (os.date([[
  127. @𝐋𝐢𝐛𝐭𝐞𝐫𝐬𝐚𝐟𝐞 | 𝐕𝐢𝐩 𝐒𝐜𝐫𝐢𝐩𝐭 𝐁𝐲 @𝐂𝐆𝐂𝐡𝐞𝐚𝐭𝐬
  128. %A, %d %B %Y %H:%M%p]])))      
  129. if  MN  ==  nil  then
  130. else
  131. if  MN[1]  ==  true  then  a1()  end
  132. if  MN[2]  ==  true  then  a3()  end  
  133. if  MN[3]  ==  true  then  a4()  end  
  134. if  MN[4]  ==  true  then  a5()  end
  135. if  MN[5]  ==  true  then  a6()  end  
  136. if  MN[6]  ==  true  then  a7()  end  
  137. if  MN[7]  ==  true  then  a8()  end  
  138. if  MN[8]  ==  true  then  a10()  end
  139. if  MN  [9]  ==  true  then  a11()  end  
  140. if  MN  [10]  ==  true  then  a12()  end
  141. if  MN  [11]  ==  true  then  a13()  end
  142. if  MN  [12] ==  true  then  a14()  end
  143. if  MN  [13] ==  true  then  a15()  end
  144. if  MN[14]  ==  true  then  EXIT()  end  end
  145. PUBGMH  =  -1  end
  146. function  a1()
  147. WC = CG.multiChoice({
  148.   "𝐀𝐧𝐭𝐢𝐛𝐚𝐧 𝐕𝟏 𝐋𝐨𝐛𝐛𝐲",
  149.   "𝐀𝐧𝐭𝐢𝐛𝐚𝐧 𝐕𝟐 𝐋𝐨𝐛𝐛𝐲",
  150.   "𝐀𝐧𝐭𝐢𝐛𝐚𝐧 𝐕𝟑 𝐋𝐨𝐛𝐛𝐲",
  151.   "𝐁𝐲𝐩𝐚𝐬𝐬 𝟏𝟎 𝐌𝐢𝐧𝐮𝐭𝐞 𝐁𝐚𝐧(𝐆𝐚𝐦𝐞)",
  152.   "𝐁_𝐀_𝐂_𝐊"
  153. }, nil, (os.date([[
  154. @𝐋𝐢𝐛𝐭𝐞𝐫𝐬𝐚𝐟𝐞 | 𝐕𝐢𝐩 𝐒𝐜𝐫𝐢𝐩𝐭 𝐁𝐲 @𝐂𝐆𝐂𝐡𝐞𝐚𝐭𝐬
  155. %A, %d %B %Y %H:%M%p]])))      
  156. if WC == nil then
  157. else
  158.   if WC[1] == true then
  159. WC1()
  160.   end
  161.   if WC[2] == true then
  162. WC2()
  163.   end
  164.   if WC[3] == true then
  165. WC3()
  166.   end
  167.   if WC[4] == true then
  168. WC5()
  169.   end
  170.   if WC[5] == true then
  171. HOME()
  172.   end
  173. end
  174. PUBGMH = -1
  175.   end
  176.  
  177.   function WC1()
  178.  
  179. CG.clearResults()
  180. CG.setRanges(CG.REGION_C_ALLOC)
  181. CG.searchNumber("67109633", CG.TYPE_DWORD)
  182. CG.getResults(50000)
  183. CG.editAll("67109633", CG.TYPE_DWORD)
  184. CG.clearResults()
  185. CG.setRanges(CG.REGION_C_ALLOC)
  186. CG.setVisible(false)
  187. CG.searchNumber("135682;144387", CG.TYPE_DWORD)
  188. CG.refineNumber("135682", CG.TYPE_DWORD)
  189. CG.getResults(50000)
  190. CG.setVisible(false)
  191. CG.editAll("0", CG.TYPE_DWORD)
  192. CG.setVisible(false)
  193. CG.clearResults()
  194. CG.clearResults()
  195. CG.setRanges(CG.REGION_C_ALLOC)
  196. CG.setVisible(false)
  197. CG.searchNumber("134658;131586", CG.TYPE_DWORD)
  198. CG.refineNumber("134658", CG.TYPE_DWORD)
  199. CG.getResults(50000)
  200. CG.setVisible(false)
  201. CG.editAll("0", CG.TYPE_DWORD)
  202. CG.setVisible(false)
  203. CG.clearResults()
  204. CG.clearResults()
  205. CG.setRanges(CG.REGION_C_ALLOC)
  206. CG.setVisible(false)
  207. CG.searchNumber("4096;135682", CG.TYPE_DWORD)
  208. CG.refineNumber("4096", CG.TYPE_DWORD)
  209. CG.getResults(50000)
  210. CG.setVisible(false)
  211. CG.editAll("0", CG.TYPE_DWORD)
  212. CG.setVisible(false)
  213. CG.clearResults()
  214. CG.clearResults()
  215. CG.setRanges(CG.REGION_C_ALLOC)
  216. CG.searchNumber("157567", CG.TYPE_DWORD)
  217. CG.getResults(50000)
  218. CG.editAll("0", CG.TYPE_DWORD)
  219. CG.clearResults()
  220. CG.clearResults()
  221. CG.setRanges(CG.REGION_C_ALLOC)
  222. CG.searchNumber("135938", CG.TYPE_DWORD)
  223. CG.getResults(50000)
  224. CG.editAll("0", CG.TYPE_DWORD)
  225. CG.clearResults()
  226. CG.clearResults()
  227. CG.setRanges(CG.REGION_C_ALLOC)
  228. CG.searchNumber("135170", CG.TYPE_DWORD)
  229. CG.getResults(50000)
  230. CG.editAll("0", CG.TYPE_DWORD)
  231. CG.clearResults()
  232. CG.setRanges(CG.REGION_C_ALLOC)
  233. CG.searchNumber("135426", CG.TYPE_DWORD)
  234. CG.getResults(50000)
  235. CG.editAll("0", CG.TYPE_DWORD)
  236. CG.clearResults()
  237. CG.setRanges(CG.REGION_C_ALLOC)
  238. CG.searchNumber("135212", CG.TYPE_DWORD)
  239. CG.getResults(50000)
  240. CG.editAll("0", CG.TYPE_DWORD)
  241. CG.clearResults()
  242. CG.clearResults()
  243. CG.setRanges(CG.REGION_C_ALLOC)
  244. CG.setVisible(false)
  245. CG.searchNumber("134914;262403", CG.TYPE_DWORD)
  246. CG.refineNumber("134914", CG.TYPE_DWORD)
  247. CG.getResults(50000)
  248. CG.setVisible(false)
  249. CG.editAll("0", CG.TYPE_DWORD)
  250. CG.setVisible(false)
  251. CG.clearResults()
  252. CG.setRanges(CG.REGION_C_ALLOC)
  253. CG.setVisible(false)
  254. CG.searchNumber("133378;262403", CG.TYPE_DWORD)
  255. CG.refineNumber("133378", CG.TYPE_DWORD)
  256. CG.getResults(50000)
  257. CG.setVisible(false)
  258. CG.editAll("0", CG.TYPE_DWORD)
  259. CG.setVisible(false)
  260. CG.clearResults()
  261. CG.setRanges(CG.REGION_C_ALLOC)
  262. CG.setVisible(false)
  263. CG.searchNumber("131330;133634", CG.TYPE_DWORD)
  264. CG.refineNumber("131330", CG.TYPE_DWORD)
  265. CG.getResults(50000)
  266. CG.setVisible(false)
  267. CG.editAll("0", CG.TYPE_DWORD)
  268. CG.setVisible(false)
  269. CG.clearResults()
  270. CG.setRanges(CG.REGION_C_ALLOC)
  271. CG.setVisible(false)
  272. CG.searchNumber("131842;132098", CG.TYPE_DWORD)
  273. CG.refineNumber("131842", CG.TYPE_DWORD)
  274. CG.getResults(50000)
  275. CG.setVisible(false)
  276. CG.editAll("0", CG.TYPE_DWORD)
  277. CG.setVisible(false)
  278. CG.clearResults()
  279. CG.setRanges(CG.REGION_C_ALLOC)
  280. CG.searchNumber("133634", CG.TYPE_DWORD)
  281. CG.getResults(50000)
  282. CG.editAll("0", CG.TYPE_DWORD)
  283. CG.clearResults()
  284. CG.clearResults()
  285. CG.setRanges(CG.REGION_C_ALLOC)
  286. CG.searchNumber("132098", CG.TYPE_DWORD)
  287. CG.getResults(50000)
  288. CG.editAll("0", CG.TYPE_DWORD)
  289. CG.clearResults()
  290. CG.clearResults()
  291. CG.setRanges(CG.REGION_C_ALLOC)
  292. CG.searchNumber("67109633", CG.TYPE_DWORD)
  293. CG.getResults(50000)
  294. CG.editAll("67109633", CG.TYPE_DWORD)
  295. CG.clearResults()
  296. CG.setRanges(CG.REGION_C_ALLOC)
  297. CG.setVisible(false)
  298. CG.searchNumber("135682;144387", CG.TYPE_DWORD)
  299. CG.refineNumber("135682", CG.TYPE_DWORD)
  300. CG.getResults(50000)
  301. CG.setVisible(false)
  302. CG.editAll("0", CG.TYPE_DWORD)
  303. CG.setVisible(false)
  304. CG.clearResults()
  305. CG.clearResults()
  306. CG.setRanges(CG.REGION_C_ALLOC)
  307. CG.setVisible(false)
  308. CG.searchNumber("134658;131586", CG.TYPE_DWORD)
  309. CG.refineNumber("134658", CG.TYPE_DWORD)
  310. CG.getResults(50000)
  311. CG.setVisible(false)
  312. CG.editAll("0", CG.TYPE_DWORD)
  313. CG.setVisible(false)
  314. CG.clearResults()
  315. CG.clearResults()
  316. CG.setRanges(CG.REGION_C_ALLOC)
  317. CG.setVisible(false)
  318. CG.searchNumber("4096;135682", CG.TYPE_DWORD)
  319. CG.refineNumber("4096", CG.TYPE_DWORD)
  320. CG.getResults(50000)
  321. CG.setVisible(false)
  322. CG.editAll("0", CG.TYPE_DWORD)
  323. CG.setVisible(false)
  324. CG.clearResults()
  325. CG.clearResults()
  326. CG.setRanges(CG.REGION_C_ALLOC)
  327. CG.searchNumber("157567", CG.TYPE_DWORD)
  328. CG.getResults(50000)
  329. CG.editAll("0", CG.TYPE_DWORD)
  330. CG.clearResults()
  331. CG.clearResults()
  332. CG.setRanges(CG.REGION_C_ALLOC)
  333. CG.searchNumber("135938", CG.TYPE_DWORD)
  334. CG.getResults(50000)
  335. CG.editAll("0", CG.TYPE_DWORD)
  336. CG.clearResults()
  337. CG.clearResults()
  338. CG.setRanges(CG.REGION_C_ALLOC)
  339. CG.searchNumber("135170", CG.TYPE_DWORD)
  340. CG.getResults(50000)
  341. CG.editAll("0", CG.TYPE_DWORD)
  342. CG.clearResults()
  343. CG.setRanges(CG.REGION_C_ALLOC)
  344. CG.searchNumber("135426", CG.TYPE_DWORD)
  345. CG.getResults(50000)
  346. CG.editAll("0", CG.TYPE_DWORD)
  347. CG.clearResults()
  348. CG.setRanges(CG.REGION_C_ALLOC)
  349. CG.searchNumber("135212", CG.TYPE_DWORD)
  350. CG.getResults(50000)
  351. CG.editAll("0", CG.TYPE_DWORD)
  352. CG.clearResults()
  353. CG.clearResults()
  354. CG.setRanges(CG.REGION_C_ALLOC)
  355. CG.setVisible(false)
  356. CG.searchNumber("134914;262403", CG.TYPE_DWORD)
  357. CG.refineNumber("134914", CG.TYPE_DWORD)
  358. CG.getResults(50000)
  359. CG.setVisible(false)
  360. CG.editAll("0", CG.TYPE_DWORD)
  361. CG.setVisible(false)
  362. CG.clearResults()
  363. CG.setRanges(CG.REGION_C_ALLOC)
  364. CG.setVisible(false)
  365. CG.searchNumber("133378;262403", CG.TYPE_DWORD)
  366. CG.refineNumber("133378", CG.TYPE_DWORD)
  367. CG.getResults(50000)
  368. CG.setVisible(false)
  369. CG.editAll("0", CG.TYPE_DWORD)
  370. CG.setVisible(false)
  371. CG.clearResults()
  372. CG.setRanges(CG.REGION_C_ALLOC)
  373. CG.setVisible(false)
  374. CG.searchNumber("131330;133634", CG.TYPE_DWORD)
  375. CG.refineNumber("131330", CG.TYPE_DWORD)
  376. CG.getResults(50000)
  377. CG.setVisible(false)
  378. CG.editAll("0", CG.TYPE_DWORD)
  379. CG.setVisible(false)
  380. CG.clearResults()
  381. CG.setRanges(CG.REGION_C_ALLOC)
  382. CG.setVisible(false)
  383. CG.searchNumber("131842;132098", CG.TYPE_DWORD)
  384. CG.refineNumber("131842", CG.TYPE_DWORD)
  385. CG.getResults(50000)
  386. CG.setVisible(false)
  387. CG.editAll("0", CG.TYPE_DWORD)
  388. CG.setVisible(false)
  389. CG.clearResults()
  390. CG.setRanges(CG.REGION_C_ALLOC)
  391. CG.searchNumber("133634", CG.TYPE_DWORD)
  392. CG.getResults(50000)
  393. CG.editAll("0", CG.TYPE_DWORD)
  394. CG.clearResults()
  395. CG.clearResults()
  396. CG.setRanges(CG.REGION_C_ALLOC)
  397. CG.searchNumber("132098", CG.TYPE_DWORD)
  398. CG.getResults(50000)
  399. CG.editAll("0", CG.TYPE_DWORD)
  400. CG.clearResults()
  401. CG.clearResults()
  402. CG.toast("Antiban V1 Successful ✓")
  403.   end
  404.  
  405.   function WC2()
  406.  
  407. CG.clearResults()
  408. CG.setRanges(CG.REGION_C_ALLOC)
  409. CG.searchNumber("67109633", CG.TYPE_DWORD)
  410. CG.getResults(50000)
  411. CG.editAll("67109633", CG.TYPE_DWORD)
  412. CG.clearResults()
  413. CG.setRanges(CG.REGION_C_ALLOC)
  414. CG.setVisible(false)
  415. CG.searchNumber("135682;144387", CG.TYPE_DWORD)
  416. CG.refineNumber("135682", CG.TYPE_DWORD)
  417. CG.getResults(50000)
  418. CG.setVisible(false)
  419. CG.editAll("0", CG.TYPE_DWORD)
  420. CG.setVisible(false)
  421. CG.clearResults()
  422. CG.clearResults()
  423. CG.setRanges(CG.REGION_C_ALLOC)
  424. CG.setVisible(false)
  425. CG.searchNumber("134658;131586", CG.TYPE_DWORD)
  426. CG.refineNumber("134658", CG.TYPE_DWORD)
  427. CG.getResults(50000)
  428. CG.setVisible(false)
  429. CG.editAll("0", CG.TYPE_DWORD)
  430. CG.setVisible(false)
  431. CG.clearResults()
  432. CG.clearResults()
  433. CG.setRanges(CG.REGION_C_ALLOC)
  434. CG.setVisible(false)
  435. CG.searchNumber("4096;135682", CG.TYPE_DWORD)
  436. CG.refineNumber("4096", CG.TYPE_DWORD)
  437. CG.getResults(50000)
  438. CG.setVisible(false)
  439. CG.editAll("0", CG.TYPE_DWORD)
  440. CG.setVisible(false)
  441. CG.clearResults()
  442. CG.clearResults()
  443. CG.setRanges(CG.REGION_C_ALLOC)
  444. CG.searchNumber("157567", CG.TYPE_DWORD)
  445. CG.getResults(50000)
  446. CG.editAll("0", CG.TYPE_DWORD)
  447. CG.clearResults()
  448. CG.clearResults()
  449. CG.setRanges(CG.REGION_C_ALLOC)
  450. CG.searchNumber("135938", CG.TYPE_DWORD)
  451. CG.getResults(50000)
  452. CG.editAll("0", CG.TYPE_DWORD)
  453. CG.clearResults()
  454. CG.clearResults()
  455. CG.setRanges(CG.REGION_C_ALLOC)
  456. CG.searchNumber("135170", CG.TYPE_DWORD)
  457. CG.getResults(50000)
  458. CG.editAll("0", CG.TYPE_DWORD)
  459. CG.clearResults()
  460. CG.setRanges(CG.REGION_C_ALLOC)
  461. CG.searchNumber("135426", CG.TYPE_DWORD)
  462. CG.getResults(50000)
  463. CG.editAll("0", CG.TYPE_DWORD)
  464. CG.clearResults()
  465. CG.setRanges(CG.REGION_C_ALLOC)
  466. CG.searchNumber("135212", CG.TYPE_DWORD)
  467. CG.getResults(50000)
  468. CG.editAll("0", CG.TYPE_DWORD)
  469. CG.clearResults()
  470. CG.clearResults()
  471. CG.setRanges(CG.REGION_C_ALLOC)
  472. CG.setVisible(false)
  473. CG.searchNumber("134914;262403", CG.TYPE_DWORD)
  474. CG.refineNumber("134914", CG.TYPE_DWORD)
  475. CG.getResults(50000)
  476. CG.setVisible(false)
  477. CG.editAll("0", CG.TYPE_DWORD)
  478. CG.setVisible(false)
  479. CG.clearResults()
  480. CG.setRanges(CG.REGION_C_ALLOC)
  481. CG.setVisible(false)
  482. CG.searchNumber("133378;262403", CG.TYPE_DWORD)
  483. CG.refineNumber("133378", CG.TYPE_DWORD)
  484. CG.getResults(50000)
  485. CG.setVisible(false)
  486. CG.editAll("0", CG.TYPE_DWORD)
  487. CG.setVisible(false)
  488. CG.clearResults()
  489. CG.setRanges(CG.REGION_C_ALLOC)
  490. CG.setVisible(false)
  491. CG.searchNumber("131330;133634", CG.TYPE_DWORD)
  492. CG.refineNumber("131330", CG.TYPE_DWORD)
  493. CG.getResults(50000)
  494. CG.setVisible(false)
  495. CG.editAll("0", CG.TYPE_DWORD)
  496. CG.setVisible(false)
  497. CG.clearResults()
  498. CG.setRanges(CG.REGION_C_ALLOC)
  499. CG.setVisible(false)
  500. CG.searchNumber("131842;132098", CG.TYPE_DWORD)
  501. CG.refineNumber("131842", CG.TYPE_DWORD)
  502. CG.getResults(50000)
  503. CG.setVisible(false)
  504. CG.editAll("0", CG.TYPE_DWORD)
  505. CG.setVisible(false)
  506. CG.clearResults()
  507. CG.setRanges(CG.REGION_C_ALLOC)
  508. CG.searchNumber("133634", CG.TYPE_DWORD)
  509. CG.getResults(50000)
  510. CG.editAll("0", CG.TYPE_DWORD)
  511. CG.clearResults()
  512. CG.clearResults()
  513. CG.setRanges(CG.REGION_C_ALLOC)
  514. CG.searchNumber("132098", CG.TYPE_DWORD)
  515. CG.getResults(50000)
  516. CG.editAll("0", CG.TYPE_DWORD)
  517. CG.clearResults()
  518. CG.clearResults()
  519. CG.setRanges(CG.REGION_C_ALLOC)
  520. CG.searchNumber("67109633", CG.TYPE_DWORD)
  521. CG.getResults(50000)
  522. CG.editAll("67109633", CG.TYPE_DWORD)
  523. CG.clearResults()
  524. CG.setRanges(CG.REGION_C_ALLOC)
  525. CG.setVisible(false)
  526. CG.searchNumber("135682;144387", CG.TYPE_DWORD)
  527. CG.refineNumber("135682", CG.TYPE_DWORD)
  528. CG.getResults(50000)
  529. CG.setVisible(false)
  530. CG.editAll("0", CG.TYPE_DWORD)
  531. CG.setVisible(false)
  532. CG.clearResults()
  533. CG.clearResults()
  534. CG.setRanges(CG.REGION_C_ALLOC)
  535. CG.setVisible(false)
  536. CG.searchNumber("134658;131586", CG.TYPE_DWORD)
  537. CG.refineNumber("134658", CG.TYPE_DWORD)
  538. CG.getResults(50000)
  539. CG.setVisible(false)
  540. CG.editAll("0", CG.TYPE_DWORD)
  541. CG.setVisible(false)
  542. CG.clearResults()
  543. CG.clearResults()
  544. CG.setRanges(CG.REGION_C_ALLOC)
  545. CG.setVisible(false)
  546. CG.searchNumber("4096;135682", CG.TYPE_DWORD)
  547. CG.refineNumber("4096", CG.TYPE_DWORD)
  548. CG.getResults(50000)
  549. CG.setVisible(false)
  550. CG.editAll("0", CG.TYPE_DWORD)
  551. CG.setVisible(false)
  552. CG.clearResults()
  553. CG.clearResults()
  554. CG.setRanges(CG.REGION_C_ALLOC)
  555. CG.searchNumber("157567", CG.TYPE_DWORD)
  556. CG.getResults(50000)
  557. CG.editAll("0", CG.TYPE_DWORD)
  558. CG.clearResults()
  559. CG.clearResults()
  560. CG.setRanges(CG.REGION_C_ALLOC)
  561. CG.searchNumber("135938", CG.TYPE_DWORD)
  562. CG.getResults(50000)
  563. CG.editAll("0", CG.TYPE_DWORD)
  564. CG.clearResults()
  565. CG.clearResults()
  566. CG.setRanges(CG.REGION_C_ALLOC)
  567. CG.searchNumber("135170", CG.TYPE_DWORD)
  568. CG.getResults(50000)
  569. CG.editAll("0", CG.TYPE_DWORD)
  570. CG.clearResults()
  571. CG.setRanges(CG.REGION_C_ALLOC)
  572. CG.searchNumber("135426", CG.TYPE_DWORD)
  573. CG.getResults(50000)
  574. CG.editAll("0", CG.TYPE_DWORD)
  575. CG.clearResults()
  576. CG.setRanges(CG.REGION_C_ALLOC)
  577. CG.searchNumber("135212", CG.TYPE_DWORD)
  578. CG.getResults(50000)
  579. CG.editAll("0", CG.TYPE_DWORD)
  580. CG.clearResults()
  581. CG.clearResults()
  582. CG.setRanges(CG.REGION_C_ALLOC)
  583. CG.setVisible(false)
  584. CG.searchNumber("134914;262403", CG.TYPE_DWORD)
  585. CG.refineNumber("134914", CG.TYPE_DWORD)
  586. CG.getResults(50000)
  587. CG.setVisible(false)
  588. CG.editAll("0", CG.TYPE_DWORD)
  589. CG.setVisible(false)
  590. CG.clearResults()
  591. CG.setRanges(CG.REGION_C_ALLOC)
  592. CG.setVisible(false)
  593. CG.searchNumber("133378;262403", CG.TYPE_DWORD)
  594. CG.refineNumber("133378", CG.TYPE_DWORD)
  595. CG.getResults(50000)
  596. CG.setVisible(false)
  597. CG.editAll("0", CG.TYPE_DWORD)
  598. CG.setVisible(false)
  599. CG.clearResults()
  600. CG.setRanges(CG.REGION_C_ALLOC)
  601. CG.setVisible(false)
  602. CG.searchNumber("131330;133634", CG.TYPE_DWORD)
  603. CG.refineNumber("131330", CG.TYPE_DWORD)
  604. CG.getResults(50000)
  605. CG.setVisible(false)
  606. CG.editAll("0", CG.TYPE_DWORD)
  607. CG.setVisible(false)
  608. CG.clearResults()
  609. CG.setRanges(CG.REGION_C_ALLOC)
  610. CG.setVisible(false)
  611. CG.searchNumber("131842;132098", CG.TYPE_DWORD)
  612. CG.refineNumber("131842", CG.TYPE_DWORD)
  613. CG.getResults(50000)
  614. CG.setVisible(false)
  615. CG.editAll("0", CG.TYPE_DWORD)
  616. CG.setVisible(false)
  617. CG.clearResults()
  618. CG.setRanges(CG.REGION_C_ALLOC)
  619. CG.searchNumber("133634", CG.TYPE_DWORD)
  620. CG.getResults(50000)
  621. CG.editAll("0", CG.TYPE_DWORD)
  622. CG.clearResults()
  623. CG.clearResults()
  624. CG.setRanges(CG.REGION_C_ALLOC)
  625. CG.searchNumber("132098", CG.TYPE_DWORD)
  626. CG.getResults(50000)
  627. CG.editAll("0", CG.TYPE_DWORD)
  628. CG.clearResults()
  629. CG.clearResults()
  630. CG.toast("Antiban V2 Successfull ✓")
  631.   end
  632.  
  633.   function WC3()
  634.  
  635. CG.clearResults()
  636. CG.setRanges(CG.REGION_C_ALLOC)
  637. CG.searchNumber("67109633", CG.TYPE_DWORD)
  638. CG.getResults(50000)
  639. CG.editAll("67109633", CG.TYPE_DWORD)
  640. CG.clearResults()
  641. CG.setRanges(CG.REGION_C_ALLOC)
  642. CG.setVisible(false)
  643. CG.searchNumber("135682;144387", CG.TYPE_DWORD)
  644. CG.refineNumber("135682", CG.TYPE_DWORD)
  645. CG.getResults(50000)
  646. CG.setVisible(false)
  647. CG.editAll("0", CG.TYPE_DWORD)
  648. CG.setVisible(false)
  649. CG.clearResults()
  650. CG.clearResults()
  651. CG.setRanges(CG.REGION_C_ALLOC)
  652. CG.setVisible(false)
  653. CG.searchNumber("134658;131586", CG.TYPE_DWORD)
  654. CG.refineNumber("134658", CG.TYPE_DWORD)
  655. CG.getResults(50000)
  656. CG.setVisible(false)
  657. CG.editAll("0", CG.TYPE_DWORD)
  658. CG.setVisible(false)
  659. CG.clearResults()
  660. CG.clearResults()
  661. CG.setRanges(CG.REGION_C_ALLOC)
  662. CG.setVisible(false)
  663. CG.searchNumber("4096;135682", CG.TYPE_DWORD)
  664. CG.refineNumber("4096", CG.TYPE_DWORD)
  665. CG.getResults(50000)
  666. CG.setVisible(false)
  667. CG.editAll("0", CG.TYPE_DWORD)
  668. CG.setVisible(false)
  669. CG.clearResults()
  670. CG.clearResults()
  671. CG.setRanges(CG.REGION_C_ALLOC)
  672. CG.searchNumber("157567", CG.TYPE_DWORD)
  673. CG.getResults(50000)
  674. CG.editAll("0", CG.TYPE_DWORD)
  675. CG.clearResults()
  676. CG.clearResults()
  677. CG.setRanges(CG.REGION_C_ALLOC)
  678. CG.searchNumber("135938", CG.TYPE_DWORD)
  679. CG.getResults(50000)
  680. CG.editAll("0", CG.TYPE_DWORD)
  681. CG.clearResults()
  682. CG.clearResults()
  683. CG.setRanges(CG.REGION_C_ALLOC)
  684. CG.searchNumber("135170", CG.TYPE_DWORD)
  685. CG.getResults(50000)
  686. CG.editAll("0", CG.TYPE_DWORD)
  687. CG.clearResults()
  688. CG.setRanges(CG.REGION_C_ALLOC)
  689. CG.searchNumber("135426", CG.TYPE_DWORD)
  690. CG.getResults(50000)
  691. CG.editAll("0", CG.TYPE_DWORD)
  692. CG.clearResults()
  693. CG.setRanges(CG.REGION_C_ALLOC)
  694. CG.searchNumber("135212", CG.TYPE_DWORD)
  695. CG.getResults(50000)
  696. CG.editAll("0", CG.TYPE_DWORD)
  697. CG.clearResults()
  698. CG.clearResults()
  699. CG.setRanges(CG.REGION_C_ALLOC)
  700. CG.setVisible(false)
  701. CG.searchNumber("134914;262403", CG.TYPE_DWORD)
  702. CG.refineNumber("134914", CG.TYPE_DWORD)
  703. CG.getResults(50000)
  704. CG.setVisible(false)
  705. CG.editAll("0", CG.TYPE_DWORD)
  706. CG.setVisible(false)
  707. CG.clearResults()
  708. CG.setRanges(CG.REGION_C_ALLOC)
  709. CG.setVisible(false)
  710. CG.searchNumber("133378;262403", CG.TYPE_DWORD)
  711. CG.refineNumber("133378", CG.TYPE_DWORD)
  712. CG.getResults(50000)
  713. CG.setVisible(false)
  714. CG.editAll("0", CG.TYPE_DWORD)
  715. CG.setVisible(false)
  716. CG.clearResults()
  717. CG.setRanges(CG.REGION_C_ALLOC)
  718. CG.setVisible(false)
  719. CG.searchNumber("131330;133634", CG.TYPE_DWORD)
  720. CG.refineNumber("131330", CG.TYPE_DWORD)
  721. CG.getResults(50000)
  722. CG.setVisible(false)
  723. CG.editAll("0", CG.TYPE_DWORD)
  724. CG.setVisible(false)
  725. CG.clearResults()
  726. CG.setRanges(CG.REGION_C_ALLOC)
  727. CG.setVisible(false)
  728. CG.searchNumber("131842;132098", CG.TYPE_DWORD)
  729. CG.refineNumber("131842", CG.TYPE_DWORD)
  730. CG.getResults(50000)
  731. CG.setVisible(false)
  732. CG.editAll("0", CG.TYPE_DWORD)
  733. CG.setVisible(false)
  734. CG.clearResults()
  735. CG.setRanges(CG.REGION_C_ALLOC)
  736. CG.searchNumber("133634", CG.TYPE_DWORD)
  737. CG.getResults(50000)
  738. CG.editAll("0", CG.TYPE_DWORD)
  739. CG.clearResults()
  740. CG.clearResults()
  741. CG.setRanges(CG.REGION_C_ALLOC)
  742. CG.searchNumber("132098", CG.TYPE_DWORD)
  743. CG.getResults(50000)
  744. CG.editAll("0", CG.TYPE_DWORD)
  745. CG.clearResults()
  746. CG.clearResults()
  747. CG.setRanges(CG.REGION_C_ALLOC)
  748. CG.searchNumber("67109633", CG.TYPE_DWORD)
  749. CG.getResults(50000)
  750. CG.editAll("67109633", CG.TYPE_DWORD)
  751. CG.clearResults()
  752. CG.setRanges(CG.REGION_C_ALLOC)
  753. CG.setVisible(false)
  754. CG.searchNumber("135682;144387", CG.TYPE_DWORD)
  755. CG.refineNumber("135682", CG.TYPE_DWORD)
  756. CG.getResults(50000)
  757. CG.setVisible(false)
  758. CG.editAll("0", CG.TYPE_DWORD)
  759. CG.setVisible(false)
  760. CG.clearResults()
  761. CG.clearResults()
  762. CG.setRanges(CG.REGION_C_ALLOC)
  763. CG.setVisible(false)
  764. CG.searchNumber("134658;131586", CG.TYPE_DWORD)
  765. CG.refineNumber("134658", CG.TYPE_DWORD)
  766. CG.getResults(50000)
  767. CG.setVisible(false)
  768. CG.editAll("0", CG.TYPE_DWORD)
  769. CG.setVisible(false)
  770. CG.clearResults()
  771. CG.clearResults()
  772. CG.setRanges(CG.REGION_C_ALLOC)
  773. CG.setVisible(false)
  774. CG.searchNumber("4096;135682", CG.TYPE_DWORD)
  775. CG.refineNumber("4096", CG.TYPE_DWORD)
  776. CG.getResults(50000)
  777. CG.setVisible(false)
  778. CG.editAll("0", CG.TYPE_DWORD)
  779. CG.setVisible(false)
  780. CG.clearResults()
  781. CG.clearResults()
  782. CG.setRanges(CG.REGION_C_ALLOC)
  783. CG.searchNumber("157567", CG.TYPE_DWORD)
  784. CG.getResults(50000)
  785. CG.editAll("0", CG.TYPE_DWORD)
  786. CG.clearResults()
  787. CG.clearResults()
  788. CG.setRanges(CG.REGION_C_ALLOC)
  789. CG.searchNumber("135938", CG.TYPE_DWORD)
  790. CG.getResults(50000)
  791. CG.editAll("0", CG.TYPE_DWORD)
  792. CG.clearResults()
  793. CG.clearResults()
  794. CG.setRanges(CG.REGION_C_ALLOC)
  795. CG.searchNumber("135170", CG.TYPE_DWORD)
  796. CG.getResults(50000)
  797. CG.editAll("0", CG.TYPE_DWORD)
  798. CG.clearResults()
  799. CG.setRanges(CG.REGION_C_ALLOC)
  800. CG.searchNumber("135426", CG.TYPE_DWORD)
  801. CG.getResults(50000)
  802. CG.editAll("0", CG.TYPE_DWORD)
  803. CG.clearResults()
  804. CG.setRanges(CG.REGION_C_ALLOC)
  805. CG.searchNumber("135212", CG.TYPE_DWORD)
  806. CG.getResults(50000)
  807. CG.editAll("0", CG.TYPE_DWORD)
  808. CG.clearResults()
  809. CG.clearResults()
  810. CG.setRanges(CG.REGION_C_ALLOC)
  811. CG.setVisible(false)
  812. CG.searchNumber("134914;262403", CG.TYPE_DWORD)
  813. CG.refineNumber("134914", CG.TYPE_DWORD)
  814. CG.getResults(50000)
  815. CG.setVisible(false)
  816. CG.editAll("0", CG.TYPE_DWORD)
  817. CG.setVisible(false)
  818. CG.clearResults()
  819. CG.setRanges(CG.REGION_C_ALLOC)
  820. CG.setVisible(false)
  821. CG.searchNumber("133378;262403", CG.TYPE_DWORD)
  822. CG.refineNumber("133378", CG.TYPE_DWORD)
  823. CG.getResults(50000)
  824. CG.setVisible(false)
  825. CG.editAll("0", CG.TYPE_DWORD)
  826. CG.setVisible(false)
  827. CG.clearResults()
  828. CG.setRanges(CG.REGION_C_ALLOC)
  829. CG.setVisible(false)
  830. CG.searchNumber("131330;133634", CG.TYPE_DWORD)
  831. CG.refineNumber("131330", CG.TYPE_DWORD)
  832. CG.getResults(50000)
  833. CG.setVisible(false)
  834. CG.editAll("0", CG.TYPE_DWORD)
  835. CG.setVisible(false)
  836. CG.clearResults()
  837. CG.setRanges(CG.REGION_C_ALLOC)
  838. CG.setVisible(false)
  839. CG.searchNumber("131842;132098", CG.TYPE_DWORD)
  840. CG.refineNumber("131842", CG.TYPE_DWORD)
  841. CG.getResults(50000)
  842. CG.setVisible(false)
  843. CG.editAll("0", CG.TYPE_DWORD)
  844. CG.setVisible(false)
  845. CG.clearResults()
  846. CG.setRanges(CG.REGION_C_ALLOC)
  847. CG.searchNumber("133634", CG.TYPE_DWORD)
  848. CG.getResults(50000)
  849. CG.editAll("0", CG.TYPE_DWORD)
  850. CG.clearResults()
  851. CG.clearResults()
  852. CG.setRanges(CG.REGION_C_ALLOC)
  853. CG.searchNumber("132098", CG.TYPE_DWORD)
  854. CG.getResults(50000)
  855. CG.editAll("0", CG.TYPE_DWORD)
  856. CG.clearResults()
  857. CG.clearResults()
  858. CG.toast("Antiban V3 Successful ✓")
  859.   end
  860.  
  861.   function WC5()
  862. CG.clearResults()
  863. CG.setRanges(CG.REGION_C_DATA)
  864. CG.searchNumber("2.5620291e-20", CG.TYPE_FLOAT)
  865. CG.getResults(9977776)
  866. CG.editAll("0", CG.TYPE_FLOAT)
  867. CG.clearResults()
  868. CG.setRanges(CG.REGION_CODE_APP)
  869. CG.searchNumber("2.5620291e-20", CG.TYPE_FLOAT)
  870. CG.getResults(64445666)
  871. CG.editAll("0", CG.TYPE_FLOAT)
  872. CG.clearResults()
  873. CG.setRanges(CG.REGION_CODE_SYS)
  874. CG.searchNumber("2.5620291e-20", CG.TYPE_FLOAT)
  875. CG.getResults(65433247)
  876. CG.editAll("0", CG.TYPE_FLOAT)
  877. CG.clearResults()
  878. CG.setRanges(CG.REGION_C_ALLOC)
  879. CG.searchNumber("1954047316;1970037078", 4, false, 536870912, 0, -1)
  880. CG.searchNumber("1954047316;1970037078", 4, false, 536870912, 0, -1)
  881. CG.getResults(10)
  882. CG.editAll("9", 4)
  883. CG.clearResults()
  884. CG.setRanges(CG.REGION_C_ALLOC)
  885. CG.searchNumber("1232364871;1231974243", CG.TYPE_DWORD, false, CG.SIGN_EQUAL, 0, -1)
  886. CG.searchNumber("1232364871;1231974243", CG.TYPE_DWORD, false, CG.SIGN_EQUAL, 0, -1)
  887. CG.getResults(100)
  888. CG.editAll("0", CG.TYPE_DWORD)
  889. CG.clearResults()
  890. CG.searchNumber("251043084;251043088;389453356;389453360", CG.TYPE_XOR, false, CG.SIGN_EQUAL, 0, -1, 0)
  891. revert = CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil)
  892. for i, i in ipairs((CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil))) do
  893.   if i.flags == CG.TYPE_XOR then
  894. i.value = "0"
  895. i.freeze = true
  896.   end
  897. end
  898. CG.addListItems((CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil)))
  899. CG.clearResults()
  900. CG.clearList()
  901. CG.searchNumber("100/101/102/105/109/110/111/114/115/116/121", CG.TYPE_BYTE, false, CG.SIGN_EQUAL, 0, -1, 0)
  902. revert = CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil)
  903. for i, i in ipairs((CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil))) do
  904.   if i.flags == CG.TYPE_BYTE then
  905. i.value = "0"
  906. i.freeze = true
  907.   end
  908. end
  909. CG.addListItems((CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil)))
  910. CG.searchNumber("18429;18793;19004;19359;19753;19998;20183;20368;20555;20731", CG.TYPE_WORD, false, CG.SIGN_EQUAL, 0, -1, 0)
  911. revert = CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil)
  912. for i, i in ipairs((CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil))) do
  913.   if i.flags == CG.TYPE_WORD then
  914. i.value = "0"
  915. i.freeze = true
  916.   end
  917. end
  918. CG.addListItems((CG.getResults(50000, nil, nil, nil, nil, nil, nil, nil, nil)))
  919. CG.searchNumber("1,18805126473;1,39494328946;1,57320220023;1,69638351351;1,73161292076", CG.TYPE_DOUBLE, false, CG.SIGN_EQUAL, 0, -1, 0)
  920. revert = CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil)
  921. for i, i in ipairs((CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil))) do
  922.   if i.flags == CG.TYPE_DOUBLE then
  923. i.value = "0"
  924. i.freeze = true
  925.   end
  926. end
  927. CG.addListItems((CG.getResults(15000, nil, nil, nil, nil, nil, nil, nil, nil)))
  928. CG.clearResults()
  929. CG.toast("10 Minutes Ban Fixed😍")
  930. end
  931.  
  932.  
  933. function  a4()
  934. CG.setRanges(CG.REGION_CODE_APP)
  935. local  dataType  =  4
  936. local  search  =  {{-369098744,  0},{-442563144,  4},}
  937. local  modify  =  {{0,  0},}
  938. SearchWrite(search,modify,dataType,Name)
  939. local  dataType  =  4
  940. local  search  =  {{-300938736,  0},{1124073472,  4},}
  941. local  modify  =  {{0,  0},}
  942. SearchWrite(search,modify,dataType,Name)
  943. CG.clearList()
  944. CG.toast("NᎾ  ᎡᎬᏟᎾᏆᏞ  ᎾN  ")
  945. end
  946.  
  947. function  a5()
  948. karar = {
  949. {["memory"] = 32},
  950. {["name"] = "ᴀɴᴛᴇɴɴᴀ"},
  951. {["value"] = 4804934254803878643 , ["type"] = 32},
  952. {["lv"] = -4410762456449774017, ["offset"] = 4, ["type"] = 32},
  953. {["lv"] = 4575657222473777152, ["offset"] = 12, ["type"] = 32},
  954. }
  955. qmxg = {
  956. {["value"] = 4610560119594024960, ["offset"] = 0, ["type"] = 32},
  957. {["value"] = -4410762456495030272, ["offset"] = 4, ["type"] = 32},
  958. {["value"] = 4575657222557253632, ["offset"] = 12, ["type"] = 32},
  959.  
  960. }
  961. xqmnb(karar)
  962. CG.toast("ᎪNᎢᎬᎬNᎪ  ᎾN")
  963. end
  964.  
  965. function  a6()
  966. CG.clearResults()
  967. CG.setRanges(CG.REGION_CODE_APP)
  968. CG.searchNumber("360;0.0001;1478828288", CG.TYPE_FLOAT, false, CG.SIGN_EQUAL, 0, -1)
  969. CG.searchNumber("0.0001", CG.TYPE_FLOAT, false, CG.SIGN_EQUAL, 0, -1)
  970. CG.getResults(100)
  971. CG.editAll("50000", CG.TYPE_FLOAT)
  972. CG.clearResults()
  973. end
  974.  
  975.  
  976. function  a7()
  977. CG.setRanges(CG.REGION_ANONYMOUS)
  978. local  dataType  =  16
  979. local  search  =  {{25.0,  0},{30.5,  4},}
  980. local  modify  =  {{560,  0},{560,  4},}
  981. SearchWrite(search,modify,dataType,Name)
  982. CG.clearList()
  983. CG.toast("ᎻᎬᎪᎠᏚᎻᎾᎢ  ᏴᎡᏌᎢᎪᏞ  ᎾN")
  984. end
  985.  
  986. function  a8()
  987. CG.setRanges(CG.REGION_ANONYMOUS)
  988. local  dataType  =  16
  989. local  search  =  {{35.0,  0},{33.0,  4},{69.5,  8},}
  990. local  modify  =  {{140,  0},{160,  4},{230,  8},}
  991. SearchWrite(search,modify,dataType,Name)
  992. CG.clearList()
  993. CG.toast("Magic Bullet  ᎾN")
  994. end
  995.  
  996.  
  997. function  a10()
  998. CG.setRanges(CG.REGION_CODE_APP)
  999. local  dataType  =  4
  1000. local  search  =  {{1135869952,  0},{53655172,  4},}
  1001. local  modify  =  {{1132377492,  0},}
  1002. SearchWrite(search,modify,dataType,Name)
  1003. CG.clearList()
  1004. CG.toast("ᏔᏆᎠᎬ  ᏙᏆᎬᏔ  ᎾN")
  1005. end  
  1006.  
  1007. function  a11()
  1008. CG.setRanges(CG.REGION_CODE_APP)
  1009. local  dataType  =  4
  1010. local  search  =  {{-298841535,  0},{-409731072,  4},}
  1011. local  modify  =  {{0,  0},}
  1012. SearchWrite(search,modify,dataType,Name)
  1013. CG.clearList()
  1014. CG.toast("NᎾ  FᎾᏩ  ᎾN")
  1015. end
  1016.  
  1017. function  a12()
  1018. CG.clearResults()
  1019. CG.setRanges(CG.REGION_ANONYMOUS)
  1020. CG.searchNumber("28552639057982305", CG.TYPE_QWORD, false, CG.SIGN_EQUAL, 0, -1)
  1021. jump=CG.getResults(2, nil, nil, nil, nil, nil, nil, nil, nil)
  1022. CG.editAll("28552639057989999", CG.TYPE_QWORD)
  1023. CG.clearResults()
  1024. CG.toast("NᎾ  ᏩᎡᎪᏚᏚ  ᎾN  ")
  1025. end
  1026.  
  1027. function  a13()
  1028. CG.setRanges(CG.REGION_ANONYMOUS)
  1029. CG.searchNumber("3.4028235e38;0.05000000075::5", CG.TYPE_FLOAT, false)
  1030. CG.searchNumber("0.05000000075", CG.TYPE_FLOAT, false)
  1031. CG.getResults(30)
  1032. CG.editAll("100", CG.TYPE_FLOAT)
  1033. CG.clearResults()
  1034. CG.toast("Black  Sky  By  :  @CGCheats")
  1035. end
  1036.  
  1037. function  a14()
  1038. NG  = CG.multiChoice({
  1039. "🚘Speed  Dasia",
  1040. "🚙Speed  Uaz",
  1041. "B a c k"
  1042. },  nil,  "「  💶  SCRIPT  ҒΩR  SΣΔSΩΠ  15💶」\n「  💶  CRΣΔTΣD  βΨMR  CΩDΣ  404💶」\n「  💶  TΣLΣGRΔM  @CGCHEATS💶」")
  1043. if  NG  ==  nil  then
  1044. else
  1045. if  NG[1]  ==  true  then Dasia()  end
  1046. if  NG[2]  ==  true  then  Uaz()  end
  1047. if  NG[3]  ==  true  then  HOME()  end  end end
  1048.  
  1049. function  Dasia()
  1050. CG.setRanges(CG.REGION_ANONYMOUS)
  1051. CG.searchNumber("1000;10;4D;4D;50;5;2;0.03::", CG.TYPE_FLOAT, false, CG.SIGN_EQUAL, 0, -1)
  1052. CG.searchNumber("0.03", CG.TYPE_FLOAT, false, CG.SIGN_EQUAL, 0, -1)
  1053. CG.searchNumber("0.03", CG.TYPE_FLOAT, false, CG.SIGN_EQUAL, 0, -1)
  1054. CG.searchNumber("0.03", CG.TYPE_FLOAT, false, CG.SIGN_EQUAL, 0, -1)
  1055. CG.getResults(280)
  1056. CG.editAll("-0.23", CG.TYPE_FLOAT)
  1057. CG.clearResults()
  1058. CG.toast("Speed Dacia activated!")
  1059. end
  1060.  
  1061. function  Uaz()
  1062. CG["clearResults"]()
  1063. CG["setRanges"](CG["REGION_ANONYMOUS"])
  1064. CG["searchNumber"]("0.647058857;0.30000001192;0.94117647409::9", CG["TYPE_FLOAT"], false, CG["SIGN_EQUAL"], 0, -1)
  1065. CG["searchNumber"]("0.647058857;0.30000001192::5", CG["TYPE_FLOAT"], false, CG["SIGN_EQUAL"], 0, -1)
  1066. CG["searchNumber"]("0.647058857;0.30000001192::5", CG["TYPE_FLOAT"], false, CG["SIGN_EQUAL"], 0, -1)
  1067. CG["searchNumber"]("0.647058857;0.30000001192::5", CG["TYPE_FLOAT"], false, CG["SIGN_EQUAL"], 0, -1)
  1068. CG["getResults"](50)
  1069. CG["editAll"]("100.241295", CG["TYPE_FLOAT"])
  1070. CG["clearResults"]()
  1071. CG.toast("ᏚᏢᎬᎬᎠ  ᏌᎪᏃ  ᎾN")
  1072. end
  1073.  
  1074. function  a15()
  1075. if  para  ==  off  then
  1076. CG.setRanges(CG.REGION_CODE_APP)
  1077. local  dataType  =  4
  1078. local  search  =  {{-1632630200,  0},{-300938736,  4},{-498348000,  8},}
  1079. local  modify  =  {{1,  0},}
  1080. SearchWrite(search,modify,dataType,Name)
  1081. CG.clearList()
  1082. CG.toast("Flash Activation Done")
  1083. para  =  on
  1084. else  
  1085. CG.setRanges(CG.REGION_CODE_APP)
  1086. local  dataType  =  4
  1087. local  search  =  {{1,  0},{-300938736,  4},{-498348000,  8},}
  1088. local  modify  =  {{-1632630200,  0},}
  1089. SearchWrite(search,modify,dataType,Name)
  1090. CG.clearList()
  1091. CG.toast("Flash Disable Success")
  1092. para  =  off
  1093. end
  1094. end
  1095.  
  1096.  
  1097. function  a3()
  1098. ML  =  CG.multiChoice({
  1099. "👥ᏔᎪᏞᏞ  ᎻᎪᏟ𝐊  [𝐬ᴅ𝟔𝟕𝟓/𝟖𝟒𝟓]",
  1100. "👥ᏔᎪᏞᏞ  ᎻᎪᏟ𝐊  [𝐬ᴅ𝟔𝟔𝟓/𝟖𝟒𝟓]",
  1101. "👥ᏟᎾᏞᎾᏌᎡ  ᎡᎬᎠ  [𝐬ᴅ𝟔𝟔𝟓/𝟖𝟒𝟓]",
  1102. "👥ᏟᎾᏞᎾᏌᎡ  𝐘ᎬᏞᏞᎾᏔ  [𝐬ᴅ𝟔𝟔𝟓/𝟖𝟒𝟓]",
  1103. "👥ᏟᎾᏞᎾᏌᎡ  ᏩᎡᎬᎬ𝐍  [𝐬ᴅ𝟔𝟔𝟓/𝟖𝟒𝟓]",
  1104. "👥ᏟᎾᏞᎾᏌᎡ  Ꮪ𝐊𝐘  ᏴᏞᏌᎬ  [𝐬ᴅ𝟔𝟔𝟓/𝟖𝟒𝟓]",
  1105. "👥ᏟᎾᏞᎾᏌᎡ  ᏔᎻᏆᎢᎬ  [𝐬ᴅ𝟔𝟔𝟓/𝟖𝟒𝟓]",
  1106. "❌ᏴᎪᏟ𝐊"
  1107. }, nil, (os.date([[
  1108. @𝐋𝐢𝐛𝐭𝐞𝐫𝐬𝐚𝐟𝐞 | 𝐕𝐢𝐩 𝐒𝐜𝐫𝐢𝐩𝐭 𝐁𝐲 @𝐂𝐆𝐂𝐡𝐞𝐚𝐭𝐬
  1109. %A, %d %B %Y %H:%M%p]])))
  1110. if  ML  ==  nil  then
  1111. else
  1112. if  ML[1]  ==  true  then
  1113. hack1()
  1114.   end
  1115.   if  ML[2]  ==  true  then
  1116.   hack2()
  1117.   end
  1118. if  ML[3]  ==  true  then
  1119.   hack3()
  1120. end
  1121. if  ML[4]  ==  true  then
  1122. hack4()
  1123. end
  1124. if  ML[5]  ==  true  then
  1125.   hack5()
  1126.   end
  1127.   if  ML[6]  ==  true  then
  1128.   hack7()
  1129.   end
  1130. if  ML[7]  ==  true  then
  1131. hack9()
  1132. end
  1133.   if  ML[8]  ==  true  then
  1134. HOME()
  1135. end
  1136. end
  1137. PUBGMH  =  -1
  1138. end
  1139. function  hack1()
  1140. CG.setRanges(CG.REGION_VIDEO  or  CG.REGION_BAD)
  1141. CG.searchNumber("2",  CG.TYPE_FLOAT,  false,  CG.SIGN_EQUAL,  0,  -1)
  1142. CG.refineAddress("200")
  1143. CG.getResults(999)
  1144. CG.editAll("120",  CG.TYPE_FLOAT)
  1145. CG.clearResults()
  1146. CG.searchNumber("2",  CG.TYPE_FLOAT,  false,  CG.SIGN_EQUAL,  0,  -1)
  1147. CG.refineAddress("930")
  1148. CG.getResults(999)
  1149. CG.editAll("120",  CG.TYPE_FLOAT)
  1150. CG.clearResults()
  1151. CG.toast('Wallhack  Sd  675/845  On...')
  1152. end
  1153.  
  1154.  
  1155. function  hack2()
  1156. CG.setRanges(CG.REGION_VIDEO  or  CG.REGION_BAD)
  1157. CG.clearResults()
  1158. CG.searchNumber("1.39125653e-19;2.0;1.66231134e-19:9",  CG.TYPE_FLOAT,  false,  CG.SIGN_EQUAL,  0,  -1)
  1159. CG.searchNumber("2",  CG.TYPE_FLOAT,  false,  CG.SIGN_EQUAL,  0,  -1)
  1160. CG.getResults(10)
  1161. CG.editAll("60",  CG.TYPE_FLOAT)
  1162. CG.toast("50%")
  1163. CG.clearResults()
  1164. CG.searchNumber("1.1202056e-19;3.76158192e-37;2.0:109",  CG.TYPE_FLOAT,  false,  CG.SIGN_EQUAL,  0,  -1)
  1165. CG.searchNumber("2",  CG.TYPE_FLOAT,  false,  CG.SIGN_EQUAL,  0,  -1)
  1166. CG.getResults(10)
  1167. CG.editAll("60",  CG.TYPE_FLOAT)
  1168. CG.toast("100%")
  1169. CG.clearResults()
  1170. CG.toast('Wallhack  Sd  665/845  On...')
  1171. end
  1172.  
  1173. function  hack3()
  1174. CG.setRanges(CG.REGION_VIDEO  or  CG.REGION_BAD)
  1175. local  dataType  =  4
  1176. local  search  =  {{8200,  0},{1194344477,  4},}
  1177. local  modify  =  {{7,  0},}
  1178. SearchWrite(search,modify,dataType,Name)
  1179. local  dataType  =  4
  1180. local  search  =  {{8201,  0},{1194379814,  4},}
  1181. local  modify  =  {{8,  0},}
  1182. SearchWrite(search,modify,dataType,Name)
  1183. CG.toast("💥Red💥")
  1184. CG.clearList()
  1185. end
  1186.  
  1187. function  hack4()
  1188. CG.setRanges(CG.REGION_VIDEO  or  CG.REGION_BAD)
  1189. local  dataType  =  4
  1190. local  search  =  {{8200,  0},{1194344477,  4},{8201,  8},}
  1191. local  modify  =  {{7,  0},{7,  8},}
  1192. SearchWrite(search,modify,dataType,Name)
  1193. CG.clearList()
  1194. CG.toast("💥Yellow💥")
  1195. end
  1196.  
  1197. function  hack5()
  1198. CG.setRanges(CG.REGION_VIDEO  or  CG.REGION_BAD)
  1199. local  dataType  =  4
  1200. local  search  =  {{8201,  0},{1194379814,  4},}
  1201. local  modify  =  {{7,  0},}
  1202. SearchWrite(search,modify,dataType,Name)
  1203. CG.clearList()
  1204. CG.toast("💥Green💥")
  1205. end
  1206.  
  1207. function  hack7()
  1208. CG.setRanges(CG.REGION_VIDEO  or  CG.REGION_BAD)
  1209. local  dataType  =  4
  1210. local  search  =  {{8201,  0},{1194379814,  4},}
  1211. local  modify  =  {{6,  0},}
  1212. SearchWrite(search,modify,dataType,Name)
  1213. CG.clearList()
  1214. CG.toast("💥Sky  Blue💥")
  1215. end
  1216.  
  1217.  
  1218. function  hack9()
  1219. CG.setRanges(CG.REGION_VIDEO  or  CG.REGION_BAD)
  1220. local  dataType  =  4
  1221. local  search  = {{536887301,  0},{273940495, 4},}
  1222. local  modify  =  {{7,  0},}
  1223. SearchWrite(search,modify,dataType,Name)
  1224. local  dataType  =  4
  1225. local  search  = {{536887301,  0},{273940495, 4},}
  1226. local  modify  =  {{7,   0},}
  1227. SearchWrite(search,modify,dataType,Name)
  1228. CG.toast("White  Colour")
  1229. end
  1230.  
  1231.  
  1232. function  EXIT()
  1233. print("😁 Don't Forget To Give Feedbacks")
  1234. print("✅ Codes Creator : @Libtersafe")
  1235. print("✅ Credit : @BlueHoleX")
  1236. print("✅ Support : @CGCheats")
  1237. CG.skipRestoreState()
  1238. os.exit()
  1239. CG.setVisible(true)
  1240. end
  1241. while  true  do
  1242. if  CG.isVisible(true)  then
  1243. PUBGMH  =  1
  1244. CG.setVisible(false)
  1245. end
  1246. CG.clearResults()
  1247. if  PUBGMH  ==  1  then
  1248. HOME()
  1249. end
  1250. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement