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 


Multi AOB scan whitin a button in a trainer

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
Corroder
Grandmaster Cheater Supreme
Reputation: 75

Joined: 10 Apr 2015
Posts: 1667

PostPosted: Wed Apr 22, 2015 9:41 am    Post subject: Multi AOB scan whitin a button in a trainer Reply with quote

Hi guys,

Is it possible do some AOB scan by a function button click (sender) on the CE trainer ?.

Eq :
AOB 1 : AA BB CC DD need replace with AA BB XX DD
AOB 2 : EE FF GG HH need replace with EE FF ZZ HH
AOB 3 : II JJ KK LL need replace with II JJ MM LL

How put this process AOB scan and replace in a button click?

Thank you
Back to top
View user's profile Send private message
effewe2
How do I cheat?
Reputation: 0

Joined: 20 Apr 2015
Posts: 4

PostPosted: Wed Apr 22, 2015 2:18 pm    Post subject: Reply with quote

Posted this answer in another post, but it applies here as well.

effewe2 wrote:


Here is an AoB swap function I use in my trainers that I got from a different thread here on the cheat engine forums:

Code:

function DEC_HEX(IN)
    local B,K,OUT,I,D=16,"0123456789ABCDEF","",0
   if IN<1 then
      OUT=0
      return OUT
   end
    while IN>0 do
        I=I+1
        IN,D=math.floor(IN/B),math.mod(IN,B)+1
        OUT=string.sub(K,D,D)..OUT
    end
    return OUT
end

function Aobswap(search, change)
   aobs = AOBScan(search)
   if(aobs ~= nil) then
      j = stringlist_getCount(aobs)
      --print("Found:",j);
      for i = 1, j do
         --print(stringlist_getString(aobs,i-1));
            --66 ?? ?? d1 a1 68 ?? ?? d0 d0
         address=stringlist_getString(aobs,i-1)
                for i = 1, string.len(change), 3 do
               z = string.sub(change, i, i+2)
                    x, y = string.find(z, "%?+")
                    if (x == nil) then
                  script=[[
                  ]]..address.."+"..(DEC_HEX((i-1)/3))..[[:
                  db ]]..z..[[
                  ]]
                  autoAssemble(script)
                  --print(z)
                        --print(address.."+"..(DEC_HEX((i-1)/3)))
                    end
                end
      end
      object_destroy(aobs);
      aobs=nil
   end
end


Simply place that at the start of your lua script in your trainer, then on your button click functions you call the functions and pass the value to scan for followed by the value to change all results to.
example below is a money hack that hacks 4 different AOBs and changes all results of each scan to "2d 4e 02 02 02 02 02":
Code:

function CEButtonMoneyClick(sender)
openProcess("FlashPlayerPlugin")
Aobswap("D0 ?? ?? ?? 66 12 1c","2d 4e 02 02 02 02 02")
Aobswap("D1 ?? ?? ?? 66 12 1c","2d 4e 02 02 02 02 02")
Aobswap("D2 ?? ?? ?? 66 12 1c","2d 4e 02 02 02 02 02")
Aobswap("D3 ?? ?? ?? 66 12 1c","2d 4e 02 02 02 02 02")
showMessage("Cheat Enabled! Refresh after use.")
end


As you can see, the first part in quotes is what to scan for. all results that come back from that scan will be changed to the aobs in the second set of quotes.

For that particular hack there were 4 different values I had to scan for, so I called the Aobswap function 4 times passing a different scan value each time.

Back to top
View user's profile Send private message
Corroder
Grandmaster Cheater Supreme
Reputation: 75

Joined: 10 Apr 2015
Posts: 1667

PostPosted: Fri Apr 24, 2015 5:25 am    Post subject: Reply with quote

Thanks a lot
Back to top
View user's profile Send private message
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