Leaderboard
Popular Content
Showing content with the highest reputation on 03/28/2018 in all areas
-
1 point
-
Version 3.0.1_
1,112 downloads
Lua in GG is based on LuaJ 3.0.1, so you can try to compile the script into a binary form to hide its code. However, GG is developing. Also, Lua is being modified in it, so that such scripts can not always work, or not work at all. If you experience problems with binary scripts, use the text form of the script. There is no support for the binary form of scripts and will never be. You do everything at your own peril and risk. The binary form does not mean that your script can not be restored. It just makes things a little more complicated. But if you have the necessary skills, the code can be restored. In a binary form, there is no integrity check, so that strings can be modified by the HEX editor. For example, copyright. But you can encrypt the lines so that it is not so easy. LuaJ allows you to both compile the script into a binary form, and print the contents of the script in the form of listing the commands of the virtual machine. The source code of the script is not saved during compilation. So if you lose it, then it will be problematic to restore it. Examples of using: 1. Compilation java -cp luaj-jse-3.0.1.jar luac script_text.lua -o script_compiled.lua 2. Printing script commands java -cp luaj-jse-3.0.1.jar lua -p script_compiled.lua Examples are provided for the Windows command line. If you have Linux or Android, then this is your problem how to run a .jar file there. Do not ask me about it. You must have java installed. It should also be available on the command line. In general, this is also your problem how to run the .jar file. You can see the options available by running .jar with the -h option: java -cp luaj-jse-3.0.1.jar luaс -h java -cp luaj-jse-3.0.1.jar lua -h1 point -
1 point
-
1 point
-
1 point
-
The last 2 sentences are on point. Most want the pot of gold without ever looking at the map. Process of elimination helps understand how to exploit.1 point
-
1 point
-
1 point
-
Now, it is "the best". But I have one suggestion for make it the best. You may add there search values between. I mean if any value is visible like integer, but it is float in shadow. E.g. I see that I have 2 points in game. Well, I will search between Value>=2 and Value<=3. This is possible in computer (e.g. on Cheat Engine or ArtMoney). Because I am not able choose this value to filter in GameGuardian.1 point
-
-1 points
-
Well, the thing I wanted is this mechanism: If found 1 value, edit it to 1000000 and end script. If NOT, show the ('change the value and then open GG windows again') By taping ok on that, it closes GG windows, and waits for GG window to open again, then restart the script.-1 points
-
In future we add function for test state of UI (show/hide) and allow set it (show/hide).-1 points
-
How to write a simple script In short, the process of creating a script looks like this: 1. Make a list of actions to achieve the desired result. 2. Perform them manually, in the interface, to check that everything works. 3. Then start each item in the code. To do this, see what functions are, what parameters they take and select the one you want. 4. Test the script, correcting it if necessary. For example, you need to crack some game A. 1. Make a list of actions: - find dword 123 - replace the first 100 results by 456. 2. Perform actions manually: - search for dword 123 - replace the first 100 results by 456. - make sure that everything works as it should, the game does not crash and so on. 3. open the help on scripts: https://gameguardian.net/help/ Go to the function description page: https://gameguardian.net/help/classgg.html Take the first action "find dword 123" and browse the list of functions until you find the one you need. In this case, this is mixed searchNumber (string text, int type = gg.TYPE_AUTO, bool encrypted = false, int sign = gg.SIGN_EQUAL, long memoryFrom = 0, long memoryTo = -1) Perform a search for a number, with the specified parameters. More ... Go to the function description, study it: https://gameguardian.net/help/classgg.html#a7efd4ac7766e72688cb4a84a3915721e Write the first line of the script: gg.searchNumber ('123', gg.TYPE_DWORD) Let's move on to the second action "replace the first 100 results by 456." We read the reference again. We see that we need two functions: mixed getResults (int maxCount) Load results into results. More ... mixed editAll (string value, int type) Edit all search results. More ... We pass to them and read: https://gameguardian.net/help/classgg.html#a57d16baba0f36e4dd157e25774b8977a https://gameguardian.net/help/classgg.html#a5f859e6f707b2336152411b19fea7603 We write down the following two lines of code: gg.getResults (100) gg.editAll ('456', gg.TYPE_DWORD) Continue until you have written the script completely. In this case, the script is already ready: gg.searchNumber ('123', gg.TYPE_DWORD) gg.getResults (100) gg.editAll ('456', gg.TYPE_DWORD) 4. Save the script, run it in GG, check the correctness of the work. This example is very simple, but it shows the essence. As an extension of the script, you can add cleaning results at the very beginning, setting search regions and so on. For more complex scripts, you need to understand the programming language lua and the ability to write code.-1 points
-
Version 101.1
201,155,549 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 points