style22222 Posted March 26, 2023 Posted March 26, 2023 gg.clearResults()gg.searchNumber("3200;4400",4) gg.refineNumber("4400",4) R = gg.getResults(1) local v = {} v[1] = {} v[1].address = R[1].address +0x10 v[1].flags = 4 v[1].value = 0 v[1].freeze = true gg.setValues(v) gg.addListItems(v) end I wrote the Freeze code Doesn't work unless you exit script somebody help
MAARS Posted March 26, 2023 Posted March 26, 2023 gg.clearResults() gg.searchNumber("3200;4400", gg.TYPE_DWORD) gg.refineNumber("4400", gg.TYPE_DWORD) local r = gg.getResults(1) r[1].address = r[1].address + 0x10 r[1].value = '0' r[1].freeze = true gg.setValues(r) gg.addListItems(r)
style22222 Posted March 26, 2023 Author Posted March 26, 2023 1 hour ago, MAARS said: this worked thank you
Question
style22222
gg.clearResults()gg.searchNumber("3200;4400",4)
gg.refineNumber("4400",4)
R = gg.getResults(1)
local v = {}
v[1] = {}
v[1].address = R[1].address +0x10
v[1].flags = 4
v[1].value = 0
v[1].freeze = true
gg.setValues(v)
gg.addListItems(v)
end
I wrote the Freeze code
Doesn't work unless you exit script
somebody help
2 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.