Jump to content
  • 0

I've included Freeze in my script, but it's not working


style22222

Question

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

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

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)

 

Link to comment
Share on other sites

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.