Jump to content
  • 0

I'm looking for a solution for non-persistent pointer


mystory

Question

Posted

gg.clearResults()
gg.searchNumber('5', gg.TYPE_FLOAT)
gg.getResult(?????F78, 0xFFFFFFFF, gg.TYPE_FLOAT)
gg.editAll("7,90001487732", gg.TYPE_FLOAT)
gg.clearResults()
end

"gg.getResult(F78, 0xFFFFFFFF, gg.TYPE_FLOAT)"
I wrote this myself. I want to do something like the example I did in order to explain what I want to do.

I enter my game in parallel space. There is a value ending in "F78" for the magic bullet cheat. Every time I enter the game, it changes, including before "F78" and the order of the values. For this, I wanted to do something like you see in the example above.
Let's say I search for the number "5". There are 100 results in this list. I want to do something to replace the one that ends with "F78" out of these 100 results.

Is something like this possible, or do you have a suggestion for me to write an alternative algorithm?

1 answer to this question

Recommended Posts

Posted


gg.clearResults()
gg.searchNumber('2', gg.TYPE_FLOAT)
gg.refineAddress('F78')
gg.getResults(99999)
gg.editAll("7,90001487732", gg.TYPE_FLOAT)
end

 

I found the solution.

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.