function Decode(s)
local t = {}
for byte in s:gmatch('..') do
t[#t+1] = string.char(tonumber(byte,16))
end
return table.concat(t,'')
end
function UDF1_CEButton1Click(sender)
-- Make 2 encode script and store on 2 URL's
-- URL for encode script by 64 bit script / CE
url64 = Decode('68747470733A2F2F706173746562696E2E636F6D2F7261772F7230676A6E415655')
-- URL for encode script by 32 bit script / CE
url32 = Decode('68747470733A2F2F706173746562696E2E636F6D2F7261772F7230676A6E415655')
resp = int.getURL(url32)
result = Decode(resp)
int = getInternet()
if cheatEngineIs64Bit() then
resp = int.getURL(url64)
result = Decode(resp)
local my_function = decodeFunction(result)
my_function()
else
resp = int.getURL(url32)
result = Decode(resp)
local my_function = decodeFunction(result)
my_function()
end
end
UDF1.show()
_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum