Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[HELP] Codes, stealing from the trainer! Please stop it!

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
Dark Byte
Site Admin
Reputation: 457

Joined: 09 May 2003
Posts: 25262
Location: The netherlands

PostPosted: Fri Jul 07, 2017 12:50 pm    Post subject: Reply with quote

try looking at http://forum.cheatengine.org/viewtopic.php?t=604919 for a start.

and then add some extra encodings to your aa scripts

_________________
Do not ask me about online cheats. I don't know any and wont help finding them.

Like my help? Join me on Patreon so i can keep helping
Back to top
View user's profile Send private message MSN Messenger
AylinCE
Grandmaster Cheater Supreme
Reputation: 31

Joined: 16 Feb 2017
Posts: 1234

PostPosted: Fri Jul 07, 2017 4:17 pm    Post subject: Reply with quote

Dark Byte wrote:
try looking at ...

and then add some extra encodings to your aa scripts


Coding and thought is great, but we are idiots. We are not writers! Instead, I'd be happy if you add the CE new version of this empowerment. I do not play games at all, I share the exploits I found for free. But I witnessed the paying of the codes that I worked on. People who abuse intimidates me.

We ensure that the CE reach more players. It makes us happy.
Thank you for your help
Respectfully, sir.
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
STN
I post too much
Reputation: 42

Joined: 09 Nov 2005
Posts: 2672

PostPosted: Sat Jul 08, 2017 3:56 am    Post subject: Reply with quote

It is part of CE. You just have to call it, the linked post even contain examples.

If you mean automatically, i am not sure if that is possible or even desirable for a variety of reasons.

And i don't think this can protect from paying of the codes that you worked on - you're deluded if you think this is some magic that will stop reversers completely - it will not.

_________________
Cheat Requests/Tables- Fearless Cheat Engine
https://fearlessrevolution.com
Back to top
View user's profile Send private message
AylinCE
Grandmaster Cheater Supreme
Reputation: 31

Joined: 16 Feb 2017
Posts: 1234

PostPosted: Sat Jul 08, 2017 11:05 am    Post subject: Reply with quote

Code:
function bec(data)
    return ((data:gsub('.', function(x)
        local r,b='',x:byte()
        for i=8,1,-1 do r=r..(b%2^i-b%2^(i-1)>0 and '1' or '0') end


This is an applied code.
I want to integrate it into another trainer.
But: ')' expected near ';' (Error: ')>') .. I am getting the error.
I'm glad you helped me. Thank you.
-----------------------------------------
(I'm sorry I can not software. I just find game cheat codes. I am publishing tutorial with them in free distribution. My Hobbies Embarassed )
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
atom0s
Moderator
Reputation: 198

Joined: 25 Jan 2006
Posts: 8516
Location: 127.0.0.1

PostPosted: Sat Jul 08, 2017 1:21 pm    Post subject: Reply with quote

Replace > with > since that posted version got 'htmlencoded' somewhere along the line.
_________________
- Retired.
Back to top
View user's profile Send private message Visit poster's website
AylinCE
Grandmaster Cheater Supreme
Reputation: 31

Joined: 16 Feb 2017
Posts: 1234

PostPosted: Sun Jul 09, 2017 8:41 am    Post subject: Reply with quote

When a problem is solved, the other starts!
Without knowing the software, we use the ready-made scripts to enter the exit!
The entire scenario is base64. I saw it when I studied it.
Now it's more complicated to adapt it into the trainer! I've died! Crying or Very sad


Code encryption - Base64 :


Code:
#!/usr/bin/env lua
-- Lua 5.1+ base64 v3.0 (c) 2009 by Alex Kloss <[email protected]>
-- licensed under the terms of the LGPL2

-- character table string
local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'

-- encoding
function enc(data)
    return ((data:gsub('.', function(x)
        local r,b='',x:byte()
        for i=8,1,-1 do r=r..(b%2^i-b%2^(i-1)>0 and '1' or '0') end
        return r;
    end)..'0000'):gsub('%d%d%d?%d?%d?%d?', function(x)
        if (#x < 6) then return '' end
        local c=0
        for i=1,6 do c=c+(x:sub(i,i)=='1' and 2^(6-i) or 0) end
        return b:sub(c+1,c+1)
    end)..({ '', '==', '=' })[#data%3+1])
end

-- decoding
function dec(data)
    data = string.gsub(data, '[^'..b..'=]', '')
    return (data:gsub('.', function(x)
        if (x == '=') then return '' end
        local r,f='',(b:find(x)-1)
        for i=6,1,-1 do r=r..(f%2^i-f%2^(i-1)>0 and '1' or '0') end
        return r;
    end):gsub('%d%d%d?%d?%d?%d?%d?%d?', function(x)
        if (#x ~= 8) then return '' end
        local c=0
        for i=1,8 do c=c+(x:sub(i,i)=='1' and 2^(8-i) or 0) end
        return string.char(c)
    end))
end

-- command line if not called as library
if (arg ~= nil) then
   local func = 'enc'
   for n,v in ipairs(arg) do
      if (n > 0) then
         if (v == "-h") then print "base64.lua [-e] [-d] text/data" break
         elseif (v == "-e") then func = 'enc'
         elseif (v == "-d") then func = 'dec'
         else print(_G[func](v)) end
      end
   end
else
   module('base64',package.seeall)
end
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
cenullum
How do I cheat?
Reputation: 0

Joined: 06 May 2017
Posts: 2
Location: Turkey

PostPosted: Thu Jul 13, 2017 1:31 am    Post subject: Reply with quote

nasıl çalındığını öğrendin . türkçen sanki çevrilmiş gibi
Back to top
View user's profile Send private message
AylinCE
Grandmaster Cheater Supreme
Reputation: 31

Joined: 16 Feb 2017
Posts: 1234

PostPosted: Sat Jul 15, 2017 5:17 pm    Post subject: Reply with quote

cenullum wrote:
nasıl çalındığını öğrendin . türkçen sanki çevrilmiş gibi


Google Translate Yetersiz çeviri yapıyor! Yukarıdaki base64 kodunu trainere uygulayamıyorum.
Örneğin;

Code:
function Aobswap(search, change)
     aobs = AOBScan(search, "+W")
     if(aobs == nil) then
      AobSwapCheck=false


Yerine;

Code:
     aobs = AOBScan(search, "+W")
     if(aobs == nil) then
      scanCheck=false
    else


Sadece yukarıdaki kod ile bitmiyor daha içeride de değişiklik istiyor. Ben Trainer yazamıyorum, fakat oyun hileleri buluyorum. Bu konuda yardım gerekiyor. teşekkürler..
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
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


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites