Additional Info
|
sorry for bad english :) |
Additional Info
|
Edit: Come to think of it, dudial was nice enough to make this, it should do what you're looking for: http://konghack.com/view_topic.php?tid=9990751 |
Additional Info
|
yes you can: either create a cheat table or use a lua script... AoBs = { ----------- PUT YOUR AOBS HERE --------- ---- 1st AoB is to scan, 2nd is to replace -----example: {[["66 03 02"]],[["24 03 02"]]} {[["aob to scan"]],[["aob to replace"]]}, {[["aob to scan"]]],[["aob to replace"]]} ---- create as much entries as you need, ---- separating with comma (,) } 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, "+W") if(aobs == nil) then AobSwapCheck=false else j = stringlist_getCount(aobs) for i = 1, j do 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) end end end object_destroy(aobs); aobs=nil AobSwapCheck=true end end print('----- Starting AoB Scan ------') for i = 1, #AoBs do autoAssemble(Aobswap(AoBs[i][1], AoBs[i][2])) if AobSwapCheck~=true then print('AoB: '..AoBs[i][1] ..' - not found') else print('AoB: '..AoBs[i][1] ..' - successfully changed') end end |
Additional Info
|
thanks for info |
Additional Info
|
Will this (http://konghack.com/view_post.php?p=65357) also work with "??" in the AoB? Sure, I could try it myself, but am at work right now... |
Additional Info
|
Yeah, the "??"s are just wildcards in the AoB. Flash .sol locations |
Additional Info
|
I use AutoAssembly to do multiple at a time. Save it to the CT and you can toggle the checkbox to activate it as needed. |
Additional Info
|
you can also use lua. iirc the lua aobscan will return all the results instead of just the first like with autoassembly I use this AoB tool to make all the AoBs I post. Try the online version if you dont feel like downloading it. |