Page 2 of 2

Re: AOB Wildcard Generator (v4)

Posted: Sat Feb 04, 2023 10:13 am
by The_Podstanar
Glowmoss wrote:
Wed Jan 18, 2023 10:56 am
local startPoint = modules[k].Address or 0x0000000000000000
local endPoint = getModuleSize(modules[k].Name) or 0x00007fffffffffff
What's up with that?

Re: AOB Wildcard Generator (v4)

Posted: Tue Feb 07, 2023 11:09 am
by Glowmoss
The_Podstanar wrote:
Sat Feb 04, 2023 10:13 am
Glowmoss wrote:
Wed Jan 18, 2023 10:56 am
local startPoint = modules[k].Address or 0x0000000000000000
local endPoint = getModuleSize(modules[k].Name) or 0x00007fffffffffff
What's up with that?
Thats just telling it to either use the start and end point of a module or if there is no module it will just search all memory. You could probably remove the redundent 0s I was just lazily copying from cheat engine lol

Re: AOB Wildcard Generator (v4)

Posted: Tue Feb 07, 2023 11:37 am
by The_Podstanar
I was referring to the redundant zeros, yeah

Re: AOB Wildcard Generator (v4)

Posted: Sun Apr 09, 2023 3:06 pm
by plaxor
Hello, thanks for this, 've been using this for a while now, but after I update CE to 7.5 I think it's not working anymore.. or is it just on my end? can you fix it? sorry don't know lua (yet)

Re: AOB Wildcard Generator (v4)

Posted: Tue Apr 18, 2023 12:28 am
by Glowmoss
plaxor wrote:
Sun Apr 09, 2023 3:06 pm
Hello, thanks for this, 've been using this for a while now, but after I update CE to 7.5 I think it's not working anymore.. or is it just on my end? can you fix it? sorry don't know lua (yet)
It's still working for me on 7.5 just fine what issue are you having with it

Re: AOB Wildcard Generator (v4)

Posted: Sat Apr 22, 2023 4:50 pm
by plaxor
Glowmoss wrote:
Tue Apr 18, 2023 12:28 am
^^

It always says "Unable to find unique AOB"
Image

Re: AOB Wildcard Generator (v4)

Posted: Sat Apr 22, 2023 5:08 pm
by Glowmoss
plaxor wrote:
Sat Apr 22, 2023 4:50 pm
It always says "Unable to find unique AOB"
Is that when there is a module or without ie you are generating an aob from game.exe+00852584 or from just an address

Did you try my suggested fix to that error as aSwedishMagyar just made it error out if there's no module.

Re: AOB Wildcard Generator (v4)

Posted: Fri Apr 28, 2023 1:28 am
by plaxor
Glowmoss wrote:
Sat Apr 22, 2023 5:08 pm
Is that when there is a module or without ie you are generating an aob from game.exe+00852584 or from just an address

Did you try my suggested fix to that error as aSwedishMagyar just made it error out if there's no module.
I did and still does not work.. well, now I've reformatted/refreshed my PC and it strangely fixed my issue.. unfortunately can't track the cause now :mellow: .. thank you for the responses anyway, really appreciate it :)

Re: AOB Wildcard Generator (v4)

Posted: Fri Apr 28, 2023 8:34 am
by Glowmoss
plaxor wrote:
Fri Apr 28, 2023 1:28 am
I did and still does not work.. well, now I've reformatted/refreshed my PC and it strangely fixed my issue.. unfortunately can't track the cause now :mellow: .. thank you for the responses anyway, really appreciate it :)
I must of been dreaming when I read that error as that's a different error to what I thought it was lol it wasn't able to find a unique aob. You could of tried increasing the Max length as I increased mine so that it will generally find an aob as sometimes there are a few places with similar code up to the default limit but idk what the issue you had though if it was every game you tried. It's good you got it sorted out whatever it was

Re: AOB Wildcard Generator (v4)

Posted: Sat Feb 03, 2024 5:13 am
by 濒危物种猫咪
It doesn't work on other languages, when I try to change the language, CE.exe won't start

Re: AOB Wildcard Generator (v4)

Posted: Fri Mar 15, 2024 5:49 am
by Glowmoss
濒危物种猫咪 wrote:
Sat Feb 03, 2024 5:13 am
It doesn't work on other languages, when I try to change the language, CE.exe won't start
Try changing within the function addGenerateAOBMenu

Code: Select all

local parent = findComponentByName(getMemoryViewForm(),'Tools')
to

Code: Select all

local parent = getMemoryViewForm().Extra1
Let me know if that sorts the issue as it would be looking for the string 'Tools' which obviously isn't there when your in another language.

Re: AOB Wildcard Generator (v4)

Posted: Sun Mar 17, 2024 8:44 am
by 濒危物种猫咪
Glowmoss wrote:
Fri Mar 15, 2024 5:49 am
濒危物种猫咪 wrote:
Sat Feb 03, 2024 5:13 am
It doesn't work on other languages, when I try to change the language, CE.exe won't start
Try changing within the function addGenerateAOBMenu

Code: Select all

local parent = findComponentByName(getMemoryViewForm(),'Tools')
to

Code: Select all

local parent = getMemoryViewForm().Extra1
Let me know if that sorts the issue as it would be looking for the string 'Tools' which obviously isn't there when your in another language.
It worked, thank you