Jump to content
  • 0

Question

Posted

Please check my script and guide me what is issue is there . I want to do offset 2145 to 520 ahead.

 

function wol() 

gg.searchNumber('   3D;11D;2145D ', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) 
gg.refineNumber(' 2145 ', gg. TYPE_DWORD)
local start = gg.getResults(1)
local target = start[1].address + 0×520
gg.setValues({ address = target , flags = gg.TYPE_DWORD, value = 10})
gg.toast(' MISSION HACK ') 
gg.clearResults() 
gg.alert(" Play 🌎 Denomination mission in easy level with Ace deployed") 

home = 1 
end 

Screenshot_20250829-111706.png

2 answers to this question

Recommended Posts

  • 0
Posted
7 hours ago, Ali7021 said:

Please check my script and guide me what is issue is there . I want to do offset 2145 to 520 ahead.

 

function wol() 

gg.searchNumber('   3D;11D;2145D ', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) 
gg.refineNumber(' 2145 ', gg. TYPE_DWORD)
local start = gg.getResults(1)
local target = start[1].address + 0×520
gg.setValues({ address = target , flags = gg.TYPE_DWORD, value = 10})
gg.toast(' MISSION HACK ') 
gg.clearResults() 
gg.alert(" Play 🌎 Denomination mission in easy level with Ace deployed") 

home = 1 
end 

Screenshot_20250829-111706.png

function wol() 

-- do not have space for this u take error 

-- there wrong gg.searchNumber(' 3D;11D;2145D ', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) 

-- this is true gg.searchNumber('3D;11D;2145D', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) 

gg.refineNumber('2145', gg. TYPE_DWORD)

local start = gg.getResults(1)

local target = start[1].address + 0x520 -- (0×520 this write wrong u using a " * " not right this) 

gg.setValues({ address = target , flags = gg.TYPE_DWORD, value = 10})

gg.toast(' MISSION HACK ') 

gg.clearResults() 

gg.alert(" Play 🌎 Denomination mission in easy level with Ace deployed") 

 

home =

end 

 

Try it out and if you get an error I'll help you.

Also specify the memory range, this way your search will be more specific and faster.

  • 0
Posted
function wol() 
    gg.searchNumber('3D;11D;2145D', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) 
    gg.refineNumber('2145', gg.TYPE_DWORD)
    local start = gg.getResults(1)
    local target = start[1].address + 0x520  -- Changed × to x
    gg.setValues({
        [1] = {
            address = target,
            flags = gg.TYPE_DWORD,
            value = 10
        }
    })
    gg.toast('MISSION HACK') 
    gg.clearResults() 
    gg.alert("Play Denomination mission in easy level with Ace deployed")
    home = 1 
end

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • 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.