Leaderboard
Popular Content
Showing content with the highest reputation on 08/27/2018 in all areas
-
View File GameGuardian 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). Submitter Enyby Submitted 05/19/2012 Category Official Downloads1 point
-
Version 4.0.9078+1.0.3010+1.0.3075
62,164,636 downloads
Requires Android: Android 4.0.3-4 / Ice Cream Sandwich MR1 or later. There is support for x86. Video: Work without root via Parallel Space - GameGuardian (#94txowoq) No root via Parallel Space on Android 9.0 Pie - GameGuardian (#cfa9pw40) Before installing the optimized version, uninstall the version from Google Play. Differences of the optimized version: no error 105. About second apk (32-Bit Support): About third apk (64-Bit Support): You do not need to install it if you do not intend to crack 64-bit games.1 point -
Version 101.1
201,131,418 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 -
I would suggest not using "goto" at all, but it's up to you. One thing you can try is "converting" all parts of the code that starts with labels to functions and replacing all goto usages with the calls to corresponding functions. Another option is to change all local variables to global (so that goto jumps won't enter local variables scope), but this is awful solution that is considered to be bad practice.1 point
-
You can not jump into function or outside it. All jumps must be inside one scope. Any function create new scope.1 point
-
Another example that may be easier to understand (since it uses "editAll" function, which is used very often by novice script-writers): gg.searchNumber('2', gg.TYPE_FLOAT) local results = gg.getResults(22) local excludedResultNumber = 4 if results[excludedResultNumber] ~= nil then gg.removeResults({results[excludedResultNumber]}) end print('editAll:', gg.editAll('-2', gg.TYPE_FLOAT)) This approach consists of 2 main steps: The result that should not be changed is removed from the list of results. "editAll" function is applied to edit all results that remained in the list.1 point
-
You need to know how to find the result that you want to be excluded from editing. Most likely, it's position in result list won't be consistent. Here is an example of implementing the algorithm described by Enyby: gg.searchNumber('2', gg.TYPE_FLOAT) local results = gg.getResults(22) local excludedResultNumber = 4 if results[excludedResultNumber] ~= nil then results[excludedResultNumber] = nil end for k, v in pairs(results) do v.value = '-2' end print('setValues: ', gg.setValues(results)) You will need to adapt it according to your requirements.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Name of Game: Boom beach Play Store Link Free game https://play.google.com/store/search?q=boom%20beach&hl=en_GB Version:17.105 What cheat? Health, xp, gold...: unlimted diamonds or buy free diamonds for store Have you tried cheating this game? What happened?: didnt mod it Comments:if you cant mod it is there a castle clash apk any where1 point
-
-1 points
-
-3 points