Jump to content
  • 0

help Search code manually?


darkisel

Question

help Search manually? this code GG

  gg.setRanges(32)
  gg.searchNumber("0000B040rA;0000803FrA;0000403FrA:9", 4, false, 536870912, 0, -1)
  gg.getResults(3)
  gg.editAll("1,085,276,160;0;0", 4)
  gg.clearResults()
  gg.toast("ON")

 

SETranges (32) <-- Rango memory ?= A: Anonymous ? 

TYPE ? == ????

 

 

imagen 1.PNG

imagen 2.PNG

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

On 12/16/2021 at 7:14 PM, darkisel said:

gg.setRanges(32)

in setting gg range, 32 represent Anonymous memory range.

 

On 12/16/2021 at 7:14 PM, darkisel said:

gg.searchNumber("0000B040rA;0000803FrA;0000403FrA:9", 4, false, 536870912, 0, -1)

But here, "r" is 'reverse hex'. "A" is 'Auto type'.

0000B040r = 1085276160(int) = 5.5(float)

0000803Fr= 1065353216(int) = 1(float)

0000403Fr = 1061158912(int) = 0.75(float)

But searching with AUTO type takes more time. because it searches all types.

 

So you can simply use this for less taking last.

gg.searchNumber("1085276160;1065353216;1061158912:9", gg.TYPE_DWORD, false, 536870912, 0, -1)

or

gg.searchNumber("5.5;1;0.75:9", gg.TYPE_FLOAT, false, 536870912, 0, -1)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.