Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/18/2017 in all areas

  1. Version 101.1

    201,222,813 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).
    1 point
  2. @Backlift Upload LUA scripts here: https://gameguardian.net/forum/files/category/6-lua-scripts/
    1 point
  3. Something like this I think should work fine....
    1 point
  4. You guys are really working fast! A lot of commands are added, tommorow I will learn them through manual and make good examples of them I'm really loving this.. ? My example v1.3: -Fixed some typos -removed goto c and checkpoint c to. "os. Exit()" to make it less confusing -removed unneccesary code line for hiding GameGuardian UI after searching -better explanation of "gg. Sleep()" code -fixed script made the game a crash (only 1 value may be changed) --v1.3 --#1 lines that start with "--" are comments, they won't be executed by script executer --#2 you can execute "print(gg)" command to see a short help and available options for commands, it's also available at first post of Lua scripts by Enyby at gameguardian forum: https://gameguardian.net/forum/topic/17447-lua-scripting/ --#3 this is a simple example for lua scripts, provided by backlift at gameguardian forum: https://gameguardian.net/forum/profile/563312-backlift/ --#4 some functions of this script may conflict with gameguardian search helper function, recommend to disable it before running this script --#5 each comment is related to the code above it --#6 this is an example of an effective and functional lua script with nearly full descriptional comments if gg.BUILD < 5511 then gg.alert('You need a newer version of GameGuardian to run this script. At least build 5511.') os.exit() end --if gameguardian build number is below 5511, means the script will not work,so it aborts the script and exits gg.clearResults() -- this function clears the current search results so the script starts a new scan ::a:: -- checkpoint "a" to restart the script if there are a lot of values found if gg.isVisible() then gg.setVisible(false) end -- hides the gameguardian UI after script started d = gg.prompt -- "d" is a value and = means its equal to value got from "gg.prompt" -- "gg.prompt" shows a window and requires an input from user ({A='Number of Orbs Or Dooblins'}, -- title of the required value, we named the value as "A" here, We could even use "Dooblins or orbs" but that makes the functional part of the code a bit long and it may bring some mistakes. {A='0',}) -- default input of the value "A" if d == nil -- if no value defined for "d" then gg.alert('Script canceled') -- show message that script is canceled os.exit() -- exit the script end -- mandatory argument to end the "if" command above gg.toast -- toasts a message, for reminding credits, helps, warnings or etc... ('Quadropus 2.0.48 Hack by Backlift') -- text of the toast message gg.setRanges -- set the search region ( gg.REGION_C_ALLOC) -- the region of the value, for comlplete list of regions, check comment #2 gg.searchNumber -- starts a search (d['A'], -- searchs for value "d" that has the input of "A" from "gg.prompt" gg.TYPE_DOUBLE, -- type of the value, for comlplete list of types, check comment #2 true, -- define wether the value is encrypted (true), or NOT encrypted (false) gg.SIGN_EQUAL, -- define if it is equal, inequal, bigger or smaller than input value "A", see comment #2 for more info 0, -- starting position of memory for scanning -1) -- ending position of memory for scanning if gg.getResultCount() == 1 -- this is an "if" command to make the script do commands based on situation. -- "gg.getResultCount()" will get the number of results found from search -- this commands checks that "gg.getResultCount" is equal to 4 or less, or not, if it is equal or less, it goes to "then" command, if Not, it goes to "else" command then gg.editAll('100000000', -- edits all values and set them to '100000000' gg.TYPE_DOUBLE) -- type of the values to edit, see comment #2 for more info gg.alert -- show a window with Ok button ('Hacking Done, Enjoy') -- text of the "gg.alert" window print -- shows a text at the script end window ('Quadropus 2.0.48 Hack by Backlift') -- text for the "print" function os.exit() -- ends the script because hacking is done gg.alert -- show the user a message, this is to inform the user there are currently too much values found, the user may go in the game and change the value then open the gameguardian window again by tapping on it's floating icon ('Too much values found, Go to game and change the value, then open gameguardian window again') end -- end of if statement, it is mandatory ::b:: -- checkpoint "b" for gameguardian to sleep untill user has changed the value gg.sleep(100) -- sets code ro halt or sleep at current state for a certain ammount of time in milliseconds brfore continuing to next line -- sleep 0.1 second until next command, so it will not continiously be running, or it supposed to be if not gg.isVisible() then goto b -- if gameguardian not visible, goto checkpoint "b" and rest 0.1 second then check again, user must change the value and then tap on gameguardian icon again so the code will pass this section and continue else goto a -- if gameguardian is visible, means user has opened it because it changed the value, go to checkpoint "a" to start the process again end -- end of if command, its mandatory -- example made by backlift with extreme help of enyby for fixing many issues around it -- you may edit this example and make it for other games. -- hit the thanks if you used it :)
    1 point
  5. I made a video, hopefully you figure it out. I'm sure you know how to find values. The second value is just the dword above the Initial dword value I used 'goto' on. And we freeze them both if you need to you can unfreeze both to top up the original item to 20 so you can re split as 10 https://drive.google.com/file/d/0B6_TWYDVPgxpcGdzOFdaM0dCXzA/view?usp=drivesdk
    1 point
  6. I think everything is hex and hex pointers. Extremely difficult to find and edit values. It is possible though. Hint: The only dword value I found was the level required to unlock gear. Find that, use hex pointers nearby to find price. Then use that knowledge to attempt to find other values. Again, game is extremely difficult to memory hack.
    1 point
  7. Heh... I'll just be a prick and post full hack guides for public use...
    1 point
  8. 1 point
×
×
  • 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.