View previous topic :: View next topic |
Author |
Message |
zakusa Cheater
Reputation: 0
Joined: 09 Sep 2015 Posts: 48
|
Posted: Sat Oct 10, 2015 7:39 pm Post subject: help |
|
|
help how do i make this aob change and freeze(active)
local scan = '40 02 04 04';
local replace = '05 02 03 05';
local replace_table = {};
for byte in string.gfind(replace, "[^%s]+") do
table.insert(replace_table, tonumber('0x'..byte));
end
local data = AOBScan(scan);
if (data) then
local count = data.getCount();
for i=0, count-1 do
local address = data.getString(i);
writeBytes(address, replace_table);
end
end
Last edited by zakusa on Sun Oct 11, 2015 10:59 am; edited 1 time in total |
|
Back to top |
|
 |
zakusa Cheater
Reputation: 0
Joined: 09 Sep 2015 Posts: 48
|
Posted: Sun Oct 11, 2015 10:59 am Post subject: |
|
|
plz help this should be easy for pros
|
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Sun Oct 11, 2015 11:12 am Post subject: |
|
|
/shrug
Code: | local scan = "40 02 04 04"
local replace = "05 02 03 05"
local aob = AOBScan(scan)
if aob ~= nil then
local addr = getAddressList()
local size = (#replace + 1) / 3
for i = 0, aob.Count - 1 do
local mem = addr.createMemoryRecord()
mem.Description = "Address " .. i
mem.Address = aob[i]
mem.Type = vtByteArray
mem.Aob.Size = size
mem.Active = true
mem.Value = replace
end
aob.Destroy()
aob = nil
end |
|
|
Back to top |
|
 |
Pencil3990 How do I cheat?
Reputation: 0
Joined: 16 Dec 2013 Posts: 9
|
Posted: Sun Oct 11, 2015 1:53 pm Post subject: |
|
|
zakusa wrote: | plz help this should be easy for pros | I dont mind helping u in skype, ill PM you it
|
|
Back to top |
|
 |
zakusa Cheater
Reputation: 0
Joined: 09 Sep 2015 Posts: 48
|
Posted: Sun Oct 11, 2015 4:19 pm Post subject: |
|
|
ok plz whats your skype
|
|
Back to top |
|
 |
Pencil3990 How do I cheat?
Reputation: 0
Joined: 16 Dec 2013 Posts: 9
|
Posted: Mon Oct 12, 2015 12:34 pm Post subject: |
|
|
zakusa wrote: | ok plz whats your skype |
slimshady00931
|
|
Back to top |
|
 |
|