Tristan1972 Posted April 4, 2024 Posted April 4, 2024 Hi guys, Could any anyone tell me how would go about adding N times a decimal value to a Dword? N should be determined by me
HorridModz Posted April 18, 2024 Posted April 18, 2024 On 4/4/2024 at 6:42 AM, Tristan1972 said: Hi guys, Could any anyone tell me how would go about adding N times a decimal value to a Dword? N should be determined by me Do you just mean multiplication? Or do you want to add the value N separate times, with a pause in between? For the latter, you could write a simple script, like this: N = 10 -- how many times add = 100 -- value to add on every time timebetween = 1000 -- how long to wait between times (milliseconds) values = gg.getResults(gg.getResultsCount()) for _ in N do for i in values do values[i].value = values[i].value + add end gg.sleep(timebetween) end
Question
Tristan1972
Hi guys,
Could any anyone tell me how would go about adding N times a decimal value to a Dword?
N should be determined by me
1 answer to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.