Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Group-Search function #75

Open
JDSavvy opened this issue Nov 29, 2021 · 3 comments
Open

Group-Search function #75

JDSavvy opened this issue Nov 29, 2021 · 3 comments

Comments

@JDSavvy
Copy link

JDSavvy commented Nov 29, 2021

Is there a way to search a group? Like for example the values 100;200;300 (like in GameGuardian).
If not, this would be a nice addition.

@zorgiepoo
Copy link
Owner

zorgiepoo commented Nov 30, 2021

Is that example supposed to search for values equal to 100 or 200 or 300?

It's not currently possible but it would be do-able to add the appropriate comparison functions plus extracting the list of numbers. This is the first time this has been brought up. Currently you can work around this by having multiple search windows and running separate sessions..

I imagine constraints would be:

  • Only applies to = operator
  • Does not apply for byte array and string data types
  • Does not apply for stored values searches

Not likely to look into this soon.

@zorgiepoo
Copy link
Owner

If on the other hand, what you actually want is a byte array search (with values 100 followed by 200 followed by 300 in consecutive order) then you can use the byte array search, but you will have to encode it in hexadecimal.

@zorgiepoo
Copy link
Owner

Ah I see, this is more the latter. Game Guardian allows there being a maximum defined gap between the numbers and possibly doesn't enforce them to be in-order. That is more complicated. Not currently possible. If you know the order and there's no gap you can use byte array search. I would probably just search for a single value and look in the memory viewer, debugger, or do more searches.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants