Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/20/2022 in Posts

  1. I finally found out a way to run GG on Android 10.0, it works 100% . I'm using Android 10 and running GG without root. You can guys should download VMOS. It's a virtual space that runs on version 5.1 so it enables the running of Game Guardian without root. Make sure you enable the "root option" upon installation. You can watch the video on my YouTube channel (Game Lovers Villa) - The download links are provided in the video. Please subscribe as you watch
    1 point
  2. Welcome to learn Lua scripting. Try to use table if you failed this, it's a powerful feature. https://www.lua.org/pil/2.5.html function Flash() gg.searchNumber("17~20", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) while gg.getResultsCount() > 2 do gg.processResume() gg.sleep(1250) gg.processPause() gg.searchFuzzy("-3~-1", gg.SIGN_FUZZY_EQUAL, gg.TYPE_DWORD, 0, -1) end local table = gg.getResults(10) for i = 1, #table do table[i]["value"] = -1 table[i]["freeze"] = true end gg.setValues(table) gg.toast('Done!') gg.setVisible(true) os.exit() end
    0 points
×
×
  • 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.