Jump to content
  • 0

Game Guardian Script


Harishacker1

Question

Hi there,

please tell me for below code.


gg.searchNumber("123", gg.TYPE_DWORD) 
gg.refineNumber("123", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
n = gg.getResultsCount('123')
ali = gg.getResults(123)
for i =1, n do
gg.setValues({[1] = {address = ali[1].address + 16, flags = 10, value = value, gg.TYPE_WORD}})

in value i dont want to enter edit I just want to freeze value

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

gg.searchNumber("XXXX", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0)
gg.refineNumber("*****", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0)
r = gg.getResults(100) 

local t = {}
t[1] = {}
t[1].address = r[1].address XXXX
t[1].flags = gg.TYPE_DWORD
t[1].value = XXXX
t[1].freeze = true 
gg.setValues(t)
gg.addListItems(t)
gg.toast("XXXXXXXXX")

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.