Leaderboard
Popular Content
Showing content with the highest reputation on 01/07/2019 in all areas
-
Version 101.1
201,113,456 downloads
Overview: Play games your way! “GameGuardian” is a game cheat / hack / alteration tool. With it, you can modify money, HP, SP, and much more. You can enjoy the fun part of a game without suffering from its unseasonable design. Requires Android: 2.3.3+ GameGuardian Features Summary Runs on ARM, x64 and x86 devices, including x86 emulators (LDPlayer, Droid4X, MOMO, KOPlayer, Andy, Memu, Leapdroid, AMIDuOS, Windroye, RemixOS, PhoenixOS, AVD, Genymotion, Nox, BlueStacks etc.) Supports Android 2.3.3+ (Gingerbread) through Lollipop (5+), Marshmallow (6+), Nougat (7+), Oreo (8+), Pie (9+), 10+. Support work without root via different virtual spaces. Support different emulators like PPSSPP, ePSXe, GameBoy etc. Game deceleration and acceleration (speedhack) for ARM and x86 devices, including x86 emulators. Also supports both 32-bit and 64-bit applications on 64-bit devices using speedhack. Search feature: encrypted values. Search of unknown values when specifying the difference between values. Search addresses by mask. Explicit and "fuzzy" numeric searches. Text (String, Hex, AoB) search. Supports: Double, Float, Qword, Dword, XOR, Word, Byte, or Auto data-type searches. Lua scripting support. Modify all search results at once. Filtering of search results (address greater than and less than, value greater than and less than). Search in the background feature. 'The fill' feature. Time jump feature. Dump memory. Copy memory. Customizable UI. App locale for over 50 languages. And, much, much more. Notes: ** ROOT or VIRTUAL ENVIRONMENT ONLY ** This tool only works on rooted devices or in virtual environment (without root in limited mode)! GG can work in limited mode without root, through a virtual environment. For example, through Parallel Space, VirtualXposed, Parallel Space Lite, GO multiple, 2Face and many others. Read the help for more details. You can find more information about rooting your device at XDA Developers. Want to help us improve, or add a translation? Then please visit thread "If you want to add a new translation or improve an existing". If you are having issues with the app, please visit thread "Gathering information about GG errors". Want to donate and help keep the project going? That's awesome! You can donate any amount (anything helps) here: Donate Need help with how to use this application? Please visit "Video tutorials" and forum "Guides". Credit: @d2dyno - Owner, lead designer, project management. @Enyby - Lead coder, project management. @Trasd - Technical consultant, project management. @Aqua - Creator (retired).3 points -
For more easy menu implementation, use Menu Template.. Change MyMenu to this .. MyMenu = { "Main Menu", -- Menu Title "No Recoil", function() -- When "No Recoil" clicked, this function will be executed. gg.alert("No Recoil Activated !") end, "Bigger Hitbox", function() -- When "Bigger Hitbox" clicked, this function will be executed. gg.alert("Bigger Hitbox Activated !") end, "Custom FOV", function() -- When "Custom FOV" clicked, this function will be executed. Input = gg.prompt({"Please input custom FOV Value: "}, {cFOV}, {"number"}) if Input ~= nil then InputtedFOV = Input[1] gg.alert("Changed FOV to "..InputtedFOV) end end } Example: Template_v2.0.lua3 points
-
You need to learn Lua and GG API, because the result can not be achieved without knowledge. There are at least 2 mistakes in your script because of which "it's not freezing": 1. Wrong usage of getListItems function. Incorrect usage: Correct usage: local list = gg.getListItems() 2. Using setValues function and expecting it to do the job of addListItems function. Incorrect (and even absurd) way to add items to the saved list: Correct way: list[1].value = '10000' list[1].freeze = true gg.addListItems(list)3 points
-
2 points
-
@noblack, you forgot to delete the line in function "main". Also isVisible function does not accept arguments, so that "true" in this line is redundant. Moreover, this only works because of how Lua deals with extra arguments. From the Lua 5.3 reference manual (https://www.lua.org/manual/5.3/manual.html#3.4.11) : Another thing is that value returned by "prompt" function needs to be checked (because the dialog may be cancelled, in some cases accidentally) as well as value that is stored in "Result[4]", but I suggest you to leave these improvements to be done by the author of the topic (if he needs them at all).2 points
-
Also that "UI" variable is redundant in your case. Don't use something just because others do it. Your main loop can be rewritten this way: while true do if gg.isVisible() then gg.setVisible(false) main() end gg.sleep(100) end2 points
-
Error occuring when i open GG, Was not possible open file "/proc/pid/maps". No root, using Parallel Space. Help??1 point
-
Version 2.0
721 downloads
Note: This file is intended to be used by script developers. If you don't develop scripts or don't know what it is, ignore this file. Description: The file consists of three functions: - "attachHandler" function modifies a function in a way that when it returns a string, specified error handling function is called with that string as argument. It returns modified version of the function. This function should only be used on functions that return a string with error description when an error occurs. There is a list of such functions from GG API in the file. - "defaultHandler" function is an example of error handling function. - "testError" function (commented by default) "simulates" a function that has returned a string with error description, used for testing. How to use: 1. Include contents of the file at the beginning of your code. 2. Optionally create custom error handling functions. Error handling function has to accept 1 argument - a string with error description. 3. Use "attachHandler" function to get modified version of the function and either redefine original function with it or store it in a new variable. 4. Repeat step 3 for all desired functions. Examples: -- Custom error handling function local function myHandler(errorText) gg.toast('Whoops, looks like something went wrong', true) gg.toast('Mysterious error: ' .. errorText) print('Description of the error that has occurred during script execution:\n' .. errorText) end -- Using default error handling function and redefining the original function gg.searchNumber = attachHandler(gg.searchNumber, defaultHandler) -- Using custom error handling function and storing modified function in a new variable local getResultsModified = attachHandler(gg.getResults, myHandler) -- If an error occurs, "defaultHandler" function will be called gg.searchNumber('123', gg.TYPE_DWORD) -- If an error occurs, no error handling function will be called local results1 = gg.getResults(100) -- If an error occurs, "myHandler" function will be called local results2 = getResultsModified(100)1 point -
View File Guns Of Boom Updated LUA Menu ~Menu Options~ • Chams Menu • Light AimLock • Heavy Aimlock • Auto Headshot • Turn on Admin Panel • SpeedHack Menu • WallHack Menu Notes • All menu items work. If you have any issues with an option not loading then close the menu, re-select the process in GameGuardian, and choose the option again. • Heavy AutoLock gets buggy if your game sensitivity is above 40. • AimLock's and Auto HeadShot only need to be enabled once per game instance. Chams needs to be activated at the start of every game. • Use WallHack and SpeedHack at your own risk ~ Video of Menu in Action ~ Submitter Mello- Submitted 12/20/18 Category LUA scripts1 point
-
1 point
-
Dword and REGION ANONYMOUS Use this for quick search First search 29Q;0F;0D;16,842,752D::17 Then search '0' Edit it1 point
-
Like you use that coins in shop in game so that one source If we can't hack the value directly So here coins are dependent source to a independent source In games we can get coins by many ways by shop, by winning the match,by time. It's dependent on game Lua: battleground's survivor : battle royale (#77bwv064) use above lua file to hack the game I hacked number of kills I noticed that if i kill 0 then 100 coins, if 1 kill then 300coins , if 2 kills then 500coins Then I changed number of kills I got coins1 point
-
As @CmP said,so i rewrite the code again to you. gg.setVisible(false) -- function main() gg.alert("{Press 'OK' to activate Hacks}\nthis hack Contains:\n~NoRecoil\n~Bigger Hitbox\n~FoV") Result = gg.prompt({"No Recoil","Bigger Hitbox", "FoV","Custom FoV(Needed if checked)\nSelect a number between 150 and 360"},{false,false,false,0},{"checkbox", "checkbox","checkbox","number"}) if Result[1] then NoRecoil() end if Result[2] then BigHitbox() end if Result[3] and Result[4] then FoV() end UI =-1 end -- function NoRecoil() end function BigHitbox() end function FoV() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber(Result[4], gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) local r = gg.getResults(45) gg.removeResults(r) gg.getResults(1) gg.editAll("222", gg.TYPE_FLOAT) end -- function exit() gg.toast("This script is made by \nஜ۩۩ஜ[K/D Destroyer]ஜ۩۩ஜ \nPrivate script made for wifi-iwnl") print("This script is made by \nஜ۩۩ஜ[K/D Destroyer]ஜ۩۩ஜ \nPrivate script made for wifi-iwnl") os.exit() end while true do if gg.isVisible(true) then gg.setVisible(false) main() else gg.sleep(100) end end Also watch out for invisible symbol cause of BB code1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
In our videos you can see the application GG Victim (formerly GG victum). This is a test application that we created ourselves. You can never get or download it, because it's a private application. You can not ask for a link or apk - this will never happen. The reason for creating this application: it is very difficult to find games that meet the necessary requirements to show some features of the work of GG. Also, there are copyright issues when uploading a video to Youtube. This application contains a lot of code that can help developers to strengthen protection or bypass GG. Therefore, this application can not be downloaded. If you need a test application for video recording or training, look for such application yourself. If you do not understand what a test application is, and you think that without GG Victim you can not work with GG, then GG is definitely not for you. Uninstall the GG.1 point
-
1 point
-
-1 points
-
-1 points