Jump to content
  • 0

Increments


KUMADEIT
 Share

Question

3 answers to this question

Recommended Posts

  • 0

[ @Koolie ]
---
You just need to save the earlier results into memory:

function increments(memo)
	gg.clearResults()
	memo_temp = {}
	second_memo = gg.getValues(memo)
	for k, v in ipairs(second_memo) do
		memo_temp[k] = { ['address'] = v.address, ['flags'] = v.flags, ['value'] = tonumber(v.value) + 1 }
	end
	gg.setValues(memo_temp)
end

gg.searchNumber('10', gg.TYPE_DWORD)
memo = gg.getResults( gg.getResultsCount() )

--First Increment
increments(memo)

--Second Increment
increments(memo)
...

---
*Fixed. I forgot something

Edited by kiynox
Link to comment
Share on other sites

  • 0
On 11/12/2023 at 9:19 PM, kiynox said:

[ @Koolie ]
---
You just need to save the earlier results into memory:

function increments(memo)
	gg.clearResults()
	memo_temp = {}
	second_memo = gg.getValues(memo)
	for k, v in ipairs(second_memo) do
		memo_temp[k] = { ['address'] = v.address, ['flags'] = v.flags, ['value'] = tonumber(v.value) + 1 }
	end
	gg.setValues(memo_temp)
end

gg.searchNumber('10', gg.TYPE_DWORD)
memo = gg.getResults( gg.getResultsCount() )

--First Increment
increments(memo)

--Second Increment
increments(memo)
...

---
*Fixed. I forgot something

Issue im finding is it increments all values and makes all them the same , its not +1 to each value listed , its +2 to each value therefor making them all the same 

Link to comment
Share on other sites

  • 0

[ @KUMADEIT ]
---

Quote

therefor making them all the same 

I never do testing before giving answer but the code looks fine as it calls "gg.getValues" at every iteration, thus the value will incremented. You can also call the 'increments' inside a loop:

--Solution 1
number_of_increments = 5

function increments(memo, n)
	gg.clearResults()
	memo_temp = {}
	for k, v in ipairs(memo) do
		memo_temp[k] = { ['address'] = v.address, ['flags'] = v.flags, ['value'] = tonumber(v.value) + n }
	end
	gg.setValues(memo_temp)
end

for i = 1, number_of_increments do
	increments(memo, n)
end

---

Edited by kiynox
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • 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.