Forwarded from Tis Nquyen (﹝Ƭ𝔦ន ղ𝖖մƴҽɳ﹞ ✪)
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Channel 🇮🇩 (XA404 [Pensi] 2020,06,12 - 2021,01,08)
China V4 Encryption.lua
2.9 KB
Join for more fak : @OfficialEncryptLuaGG
gg.clearResults()
gg.setRanges(gg.REGION_CODE_APP)
gg.searchNumber("-285787648;-290174237;-286131696;-286131696", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.refineNumber("-290174237", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
n = gg.getResultCount()
HR = gg.getResults(n)
for i = 1, n do
gg.addListItems({
[1] = {
address = HR[i].address +0,
flags = 4,
freeze = true,
value = 0
}
})
end
gg.toast(' AIMLOCK 100 Meter')
gg.clearResults()
--- Code Hack PUBG ?
gg.setRanges(gg.REGION_CODE_APP)
gg.searchNumber("-285787648;-290174237;-286131696;-286131696", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.refineNumber("-290174237", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
n = gg.getResultCount()
HR = gg.getResults(n)
for i = 1, n do
gg.addListItems({
[1] = {
address = HR[i].address +0,
flags = 4,
freeze = true,
value = 0
}
})
end
gg.toast(' AIMLOCK 100 Meter')
gg.clearResults()
--- Code Hack PUBG ?
for x = 10,100,100/10 do gg.sleep(300);gg.toast("LOADING ["..x.."%]") end
gg.sleep(600)
gg.toast("Only_Zin")
gg.sleep(250)
- Toast loading 10 > 100℅
gg.sleep(600)
gg.toast("Only_Zin")
gg.sleep(250)
- Toast loading 10 > 100℅
local function hex2unicode(code)
local n = tonumber(code, 16)
if (n < 128) then
return string.char(n)
elseif (n < 2048) then
return string.char(192 + ((n - (n % 64)) / 64), 128 + (n % 64))
else
return string.char(224 + ((n - (n % 4096)) / 4096), 128 + (((n % 4096) - (n % 64)) / 64), 128 + (n % 64))
end
end
if retVal and (retVal ~= "") then
currentRecord = ""
retVal = retVal:match("^[^;]*;([^;]+);[^;]*;[^;]*;[^;]*;[^;]*.*$")
if retVal then
retVal = retVal:gsub("\\u(%x%x%x%x)", hex2unicode)
else
retVal = ""
end
end
return (retVal)
end
end
local n = tonumber(code, 16)
if (n < 128) then
return string.char(n)
elseif (n < 2048) then
return string.char(192 + ((n - (n % 64)) / 64), 128 + (n % 64))
else
return string.char(224 + ((n - (n % 4096)) / 4096), 128 + (((n % 4096) - (n % 64)) / 64), 128 + (n % 64))
end
end
if retVal and (retVal ~= "") then
currentRecord = ""
retVal = retVal:match("^[^;]*;([^;]+);[^;]*;[^;]*;[^;]*;[^;]*.*$")
if retVal then
retVal = retVal:gsub("\\u(%x%x%x%x)", hex2unicode)
else
retVal = ""
end
end
return (retVal)
end
end
endtime=load('return os.time{year=2021, month=1, day=12, hour=0,min=0, sec=0}')()
if(os.time()>endtime) then
print("Expired")
end
--- Code Expired Script
if(os.time()>endtime) then
print("Expired")
end
--- Code Expired Script
🔥1
function j64(jiemib64)
local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
local temp={}
for i=1,64 do
temp[string.sub(b64chars,i,i)] = i
end
temp['=']=0
local str= ''
for i=1,#jiemib64,4 do
if i>#jiemib64 then
break
end
local data = 0
local str_count=0
for j=0,3 do
local str1=string.sub(jiemib64,i+j,i+j)
if not temp[str1] then
return
end
if temp[str1] < 1 then
data = data * 64
else
data = data * 64 + temp[str1]-1
str_count = str_count + 1
end
end
for j=16,0,-8 do
if str_count > 0 then
str=str..string.char(math.floor(data/math.pow(2,j))) data=math.fmod(data,math.pow(2,j))
str_count = str_count - 1
end
end
end
local last = tonumber(string.byte(str, string.len(str), string.len(str)))
if last == 0 then
str = string.sub(str, 1, string.len(str) - 1)
end
return str
end
function e64(jiamib64)
local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
local s64 = ''
local str = jiamib64
while #str > 0 do
local bytes_num = 0
local buf = 0
for byte_cnt=1,3 do
buf = (buf * 256)
if #str > 0 then
buf = buf + string.byte(str, 1, 1)
str = string.sub(str, 2)
bytes_num = bytes_num + 1
end
end
for group_cnt=1,(bytes_num+1) do
local b64char = math.fmod(math.floor(buf/262144), 64) + 1
s64 = s64 .. string.sub(b64chars, b64char, b64char)
buf = buf * 64
end
for fill_cnt=1,(3-bytes_num) do
s64 = s64 .. '='
end
end
return s64
end
local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
local temp={}
for i=1,64 do
temp[string.sub(b64chars,i,i)] = i
end
temp['=']=0
local str= ''
for i=1,#jiemib64,4 do
if i>#jiemib64 then
break
end
local data = 0
local str_count=0
for j=0,3 do
local str1=string.sub(jiemib64,i+j,i+j)
if not temp[str1] then
return
end
if temp[str1] < 1 then
data = data * 64
else
data = data * 64 + temp[str1]-1
str_count = str_count + 1
end
end
for j=16,0,-8 do
if str_count > 0 then
str=str..string.char(math.floor(data/math.pow(2,j))) data=math.fmod(data,math.pow(2,j))
str_count = str_count - 1
end
end
end
local last = tonumber(string.byte(str, string.len(str), string.len(str)))
if last == 0 then
str = string.sub(str, 1, string.len(str) - 1)
end
return str
end
function e64(jiamib64)
local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
local s64 = ''
local str = jiamib64
while #str > 0 do
local bytes_num = 0
local buf = 0
for byte_cnt=1,3 do
buf = (buf * 256)
if #str > 0 then
buf = buf + string.byte(str, 1, 1)
str = string.sub(str, 2)
bytes_num = bytes_num + 1
end
end
for group_cnt=1,(bytes_num+1) do
local b64char = math.fmod(math.floor(buf/262144), 64) + 1
s64 = s64 .. string.sub(b64chars, b64char, b64char)
buf = buf * 64
end
for fill_cnt=1,(3-bytes_num) do
s64 = s64 .. '='
end
end
return s64
end