I have a problem here: When I search for a certain value, it comes up with a result, and I want to get that result to continue the search, it's like this
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.
Question
vn00698090
Hi everybody,
I have a problem here: When I search for a certain value, it comes up with a result, and I want to get that result to continue the search, it's like this
gg.clearResults()
gg.toast('Lets go!!!')
gg.searchNumber("3;-12;30;1000000~3000000::33", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0)
gg.refineNumber("1000000~3000000", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1,0)
revert = gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil)
gg.toast('Got it')
gg.clearResults()
what i want is to take the value 1000000~3000000 (it will show 1 result) and put it in the search
Ex: 1000000~3000000 the result is -132312 , i want copy it to the new search like that
gg.searchNumber("3;3~8;1;2;5;-132312::33", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0)
gg.refineNumber("3~8", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1,0)
revert = gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil)
gg.editAll("1000", gg.TYPE_DWORD)
gg.toast('Got 10000')
gg.toast('Got it')
gg.clearResults()
2 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.