Jump to content
  • 0

Freeze in a script is not working


Ra12345

Question

I am not understanding why freeze is not working in the code listed below.Any help is appreciated

gg.searchAddress('7F4?????34',0xFFFFFFFFFF,gg.TYPE_FLOAT)
gg.getResults(999999)
gg.refineNumber('1.0~100.0',gg.TYPE_FLOAT)
Res=gg.getResults(999999)
gg.editAll('999999.9',gg.TYPE_FLOAT)
for i, v in ipairs(Res) do
    v.freeze=true
end
end

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

gg.searchAddress('7F4?????34',0xFFFFFFFFFF,gg.TYPE_FLOAT)
gg.getResults(999999)
gg.refineNumber('1.0~100.0',gg.TYPE_FLOAT)
Res=gg.getResults(999999)
for i, v in ipairs(Res) do
    if v.flags == gg.TYPE_FLOAT then
    v.value = 999999.9
    v.freeze = true
    end
end
gg.setValues(Res)
gg.addListItems(Res)
Res = nil
gg.clearResults()
end

see if this work...

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.