Jump to content

MonkeySAN

Contributor
  • Posts

    1,621
  • Joined

  • Last visited

  • Days Won

    102

Everything posted by MonkeySAN

  1. but searching produce results.. only when editing it didnt work? may i know what is the game?
  2. have you make sure the address stay the same between restart? because the first one you wrote different address range than this one.
  3. next time look carefully when writing a script.. you search what type of values and what type of values you are trying to edit? gg.searchNumber("16384", gg.TYPE_DWORD, gg.SIGN_EQUAL, 0x04000000, 0x04ea7000) gg.getResults(100000) gg.editAll("4451", gg.TYPE_QWORD)
  4. false = for non-encrypted value true = for encrypted value https://gameguardian.net/help/classgg.html#a14685d871e664a2f8ea74dc3293e428e
  5. try this gg.searchNumber("16384", gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0x04000000, 0x04ea7000)
  6. thats strange.. i didnt set the region too but the script run just fine and worked perfect.(latest script)
  7. MonkeySAN

    script

    here try this..me modified it from @CmP script (credits to him). local function h1() --your hack here-- gg.alert("Hack 1 Done") end local function h2() --your hack here-- gg.alert("Hack 2 Done") end local function h3() --your hack here-- gg.alert("Hack 3 Done") end local hacks = { {name = ">> Hack 1", func = h1}, {name = ">> Hack 2", func = h2}, {name = ">> Hack 3", func = h3}, } local hackNames = {} local hackFunctions = {} for i, v in pairs(hacks) do table.insert(hackNames, v.name) table.insert(hackFunctions, v.func) end gg.setVisible(false) local choice = gg.choice(hackNames,nil,"Main Menu") if choice ~= nil then hackFunctions[choice]() end
  8. MonkeySAN

    script

    this is example script by @CmP script end everytime after hack is done. How to create Menu with values (#2j8mdsbl)
  9. this script work with 64bit version of the game? because it gave me errors on me. like Fire rate after enter new ammo value...script error.
  10. my phone is 64bit. im using rooted F1 VM 64bit version. installed the game from Google Playstore. use @NoFear (credits to him) Xa search on page 2. so far...it worked everytime for now. Golden Ticket activated.
  11. MonkeySAN

    Help with address

    try this.. function Generate3(F) local p = gg.getResults(2) local t = {} t[1] = {} t[1].address = p[1].address - 0x10 t[1].flags = --value type here-- t[1].value = --new value here-- gg.setValues(t) gg.toast("Done") gg.clearResults() end
  12. MonkeySAN

    Help with address

    so im believe you use value 0.06 as base address to get to the upper address?
  13. MonkeySAN

    Help with address

    can you upload/post that part of your script here? so i may have a clear picture..
  14. MonkeySAN

    Help with address

    oh..wait you not talking about making a script here are you?
  15. MonkeySAN

    Help with address

    how about the lower one...? does the value is the same all the time? or any value below or above the 2 address that is fixed?
  16. yup..Level & Exp in Character screen. but mine was in Ca region. and Golds, Gems, Level & Exp are actually sit close to each other.(outside battle)
  17. Golds and Gems are simple Dword search during battle..
  18. @Crystal_Mods100x i got this error..
  19. something like this.. Screenrecorder-2021-06-11-22-40-38-879.mp4 where D is the difference between O the old value and N the new value.
  20. have you try unknown/fuzzy search and then refine to N = O + D ?
  21. well...actually there is a game zone in there but since it need our number to register to join and play so i cant help anymore.
×
×
  • 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.