Jump to content

MonkeySAN

Contributor
  • Posts

    1,858
  • Joined

  • Last visited

  • Days Won

    124

Everything posted by MonkeySAN

  1. false = for non-encrypted value true = for encrypted value https://gameguardian.net/help/classgg.html#a14685d871e664a2f8ea74dc3293e428e
  2. try this gg.searchNumber("16384", gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0x04000000, 0x04ea7000)
  3. thats strange.. i didnt set the region too but the script run just fine and worked perfect.(latest script)
  4. 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
  5. MonkeySAN

    script

    this is example script by @CmP script end everytime after hack is done. How to create Menu with values (#2j8mdsbl)
  6. 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.
  7. 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.
  8. MonkeySAN

    Help with address

    example?
  9. 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
  10. MonkeySAN

    Help with address

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

    Help with address

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

    Help with address

    oh..wait you not talking about making a script here are you?
  13. 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?
  14. Screenrecorder-2021-06-14-08-47-54-681.mp4
  15. 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)
  16. also Level and Exp..
  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.
  22. MonkeySAN

    edit script

    local gg = gg function main() local menu = gg.choice({ "Veneno", "Porsche", "Chevrolet", "Dodge", "Exit"},nil,"car menu") if menu == nil then elseif menu == 1 then Veneno() elseif menu == 2 then Porsche() elseif menu == 3 then Chevrolet() elseif menu == 4 then Dodge() elseif menu == 5 then os.exit() end end function Veneno() gg.searchNumber("2.25", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(500, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0.25", gg.TYPE_FLOAT) gg.clearResults() end function Porsche() gg.searchNumber("2.56", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(500, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0.25", gg.TYPE_FLOAT) gg.clearResults() end function Chevrolet() --code here end function Dodge() --code here end while true do if gg.isVisible() then gg.setVisible(false) main() end end my mistake...there are some errors in the example script given by @Crystal_Mods100x that i misslook. try this one.
  23. MonkeySAN

    edit script

    --main code function Audi() --example code-- gg.searchNumber("2.56", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(500, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0.25", gg.TYPE_FLOAT) end function Bmw() --code here end function Chevrolet() --code here end function Dodge() --code here end menu = gg.choice({ "Audi" "BMW" "Chevrolet" "Dodge" "Exit" },nil,"car menu") if menu == 1 then Audi() end if menu == 2 then Bmw() end if menu == 3 then Chevrolet() end if menu == 4 then Dodge() end if menu == 5 then os.exit() end if menu == nil then end
  24. yeah its worked in non-rooted . credits to @NoFear for that. Golden Ticket activated...
×
×
  • 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.