Jump to content
  • 0

Help xor key value script


Zerras

Question

Help how to edit the value to xorkey,this is the dword value but the xor key always change everytime the game refresh,I want to edit to be 9999999,thank u

 

Quote

r = {"188","216"}                      ---- table containing offsets values to be taken
gg.searchNumber("1,048,416" , gg.TYPE_DWORD) ---your group search value / or your search number
gg.refineNumber("1,048,416", gg.TYPE_DWORD)  -- refining the searched value to required value
q = gg.getResults(1)                    -- saving the result
-- using loop to edit the values at the offsets one by one

for i = 1,#r do
            p = {}
            p = {}
            p.address = q[1].address + r   -- address of the offset(ex :- 4) to the refined result
            p.flags = 4                   -- data type in which you want to edit the value at offset (4 = DWORD)
            p.value = 55                -- enter the edit value to make the hack
            p.freeze = true
gg.addListItems(p)
gg.clearResults()
end

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

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.