Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/14/2018 in all areas

  1. Version 101.1

    201,119,748 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
  2. Dont copy paste text from forum. It will copy 'invisible char' in your text editor. About way to 'hide' value, you can try a simple trick in your code use gg.getResultCount API. Below is just for example function A() gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber('1;2;3', gg.TYPE_FLOAT) local count = gg.getResultCount() if count == 0 then gg.toast(count..' Result found') else gg.toast(count..' Result found') gg.searchNumber('2', gg.TYPE_FLOAT) gg.getResults(100) gg.editAll('0', gg.TYPE_FLOAT) gg.toast('success') gg.clearResults() end end end If you try to call the function not in game, the process will discontinue, because searchNumber is 0 result, so you only can see half of code in the call log. But, it is just a simple trick, if you wont let your code copy by others, the best way is use by yourself and dont share.
    2 points
  3. if you use a function you have to put the script that runs first at the end of the script Example : With dot : ::home:: -- Always first run -- Your code goto exit -- Call function ::exit:: -- function os.exit() With function : function home() -- This is not run before you call this -- Your code exit() -- Call function end -- Add 'end' for finish function function exit() -- function os.exit() end home() -- Call function in the end of the script for first run
    2 points
  4. (Somthing was bugging) Btw just saying its better that you inmput the region that your searching in so that the script is faster finished. Your GG is set Ca, A and Xa but im kind of sure that that this recoil of yours is region A: Anonymous. So it has to search only in the region anyonymous so you have to type it like this: local old = gg.getRanges(); gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('1.29999995232F;0.60000002384F;1.5F;1.29999995232F;1.0F;1.29999995232F;1.0F:53', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(15) gg.editAll('0', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.clearResults() gg.setRanges(old) --[the rest of that block] Now what it says in short is that gameguardian will search in the region anonymous only, and afther its done editing (at the end of your function it will set the ranges back to the previous way they were. So in your case your ranges are now Ca, A and Xa Gameguardian will only search in A: anonymous, then when it is done editing it will return back to your original range = gg.setRanges(old) As for function() you just have to adjust your menu a lil bit. Everywere were you putted for examble: ::norecoil:: you change it to: function norecoil() so you understand?(i can not explain very detailed) You remove every "goto sdone" And you replace it with "end" Examble: FAULT!! ::jumphack:: gg.searchNumber('10.0F;0.03999999911F:21', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll('25', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.clearResults() gg.alert('Jump Hack Active') gg.toast('Credit By Krojzanovic☆') goto START CORRECT!! function jumphack() gg.searchNumber('10.0F;0.03999999911F:21', gg.TYPE_FLOAT) gg.getResults(100) gg.editAll(25, gg.TYPE_FLOAT) gg.clearResults() gg.alert('Jump Hack Active') gg.toast('Credit By Krojzanovic☆') end But this only works when your menu js done good to. Every goto has to be removed Your menu has to be done like this: FAULT!! if menu == 1 then goto norecoil end if menu == 2 then goto jumphack end if menu == 3 then goto ammo end if menu == 4 then goto sdone end if menu == nil then goto sdone end CORRECT!! if menu == 1 then norecoil() end if menu == 2 then jumphack() end if menu == 3 then ammo() end if menu == 4 then os.exit() end if menu == nil then os.exit() end know what i mean? you script needs a full change but with notepad ++ this is quicky done.. i think this is the correct way...i still dont get why you would want to exit the script when they are on nil to.
    2 points
  5. I am recommend to use function(). In any case, ::label:: have a limitation. Especially if you want to create more complex scripts.
    2 points
  6. This is the current level cap on Magizoology. I actually recommend hacking this first before the creature XP as you will need to feed it in order to find the right value. 1. Hack time again, 5h = 18000s search that and change to 1 sec or however you like. 2. Delete all results and start fuzzy search 3. Start feeding the animal (x1 food = 3xp, x2 = 7xp and x3 = 12xp) It's up to you which one you pick it doesn't matter, it's the regular N=O+D process 4. You should have 2 results in the end, pause the game, edit the higher one and you're all set, next time you feed the animal your level will max out.
    2 points
    The unique program with an excellent set of features. Distinctive features: support x86 and x64 devices and emulators (BlueStacks, Droid4X, Genymotion etc.); support Android 5+ and 6+; deceleration / acceleration speed games (ARM devices only); direct and fuzzy search; multiple fuzzy search for equality; search encrypted XOR values; search for fractional values; modify all the values found at once; show search progress; advanced filtering of search results; search value not only for equality but also in terms of more / less. Unique features GameGuardian Availability Search for encrypted values. Group Search supports all data types, including float and xor. Search in the application code. Changing the application code. Support of "data type" xor, are often used to protect the values of the changes in the games. Displays an unlimited number of search results, the main thing that you have enough memory. Filtering the search results according to various criteria. Autofill on values change. The ability to enter data in hexadecimal. The rollback feature values change if you do not need. Extended freeze values. Advanced application settings system. Viewing the game screen, without closing the program interface. The input history. Unique in-memory data storage system that allows you to store data in memory and avoid crashes the program when available memory runs out. Speedhack runs on x86 devices. Speedhack runs on android 7. speedhack Function: time jump, which allows you to go forward in time, to the exact distance. Unique speedhack configuration allows fine-tune the desired intercept timers in the game without touching unnecessary. The unique masking system unable to detect the fact of installing and running the program for the protection systems of most games. Extremely high stability. Active support. Constant updating. Localization into many languages. Special tricks against some common protective systems.
    2 points
  7. Version 1.5.0

    16,861 downloads

    ***WARNING***Read Instructions and Dialogs or Risk Data Corruption ***WARNING** Features: Adds characters to the Character Store(for a total of 138 out of 139). Modifies Character Store Prices to give currency when purchased. Activates Premium and Inactive Card Packs. Modifies Card Pack Prices to give currency when purchased. Modifies Support Card Prices to give currency when purchased. Swaps out 1 to 3 Star Gear for all of the 4 Star Gear. Adds 100 Augment Cards at a time.(only works on some devices working on it now)
    1 point
  8. Name of Game: Vampire's Fall: Origins Play Store Link (If it's a paid app, the apk): https://play.google.com/store/apps/details?id=com.earlymorningstudio.vampiresfall2Version: 1.0.42What cheat? Health, xp, gold...: anything. Money, xp, healthHave you tried cheating this game? What happened?: Yes. Can't find any of the values. Comments: I'm new to this and kinda dumb, idk what I'm doing. Also using a virtual space, and not a rooted device.
    1 point
  9. Here you can use this but dont own it.. give some credits.. gg snooper only log important code. you dont have to be ingame to log the source code.. if you use snooper.. you can select any dummy process.. it will not execute the function anyway.. so it doesn't matter.. it will output the code only.. please download the code below dont copy paste else you will get unknown symbols.. this is due to this code bbcode in this forum.. it can produce detailed like this example if you have then it will output like this another example if you got it can produce like this autodecompile.lua
    1 point
  10. watch my video ????? -- Method 1 Script will try to decompile it without password.. -- Method 2 Script will try to decompile it after you enter the password -- Method 3 ( Always Acurate & Working ) code snooper my code snooper is super detailed.. all you have to do is login and select on the vip menu like reload hack, speed hack, etc.. select that and it will output the code super detailed....take note that function will output the code instead of doing it.. so you dont need to wait.. and you save time ? isn't amazing ? xD watch the video above it and here's the sample how detailed it is.. gg.clearResults() -- normal range gg.setRanges(gg.REGION_BAD) gg.searchNumber("4.7408155e21;2",gg.TYPE_FLOAT,false,gg.SIGN_FUZZY_EQUAL,0,-1) gg.searchNumber("2",gg.TYPE_FLOAT,false,gg.SIGN_FUZZY_EQUAL,0,-1) gg.getResults(20) gg.editAll("120",gg.TYPE_FLOAT) gg.clearResults()
    1 point
  11. On this topic, hacks for games such as Combat Arms, Crossfire, Counter-Strike, and other games will be posted. If you are going to make a request for non-gameguardian hacks then make sure your title has [REQ] at the beginning of the title itself. Also post that topic in the non-Gameguardian hacks section. Whatever you do, DO NOT post in the gameguardian cheats requests section. (non-gameguardian means that it is not an android game.) Have fun hacking/cheating.
    1 point
  12. Version 1.0.0

    11,255 downloads

    Craf and Money Hack
    1 point
  13. Thanks u for help me ? @XxhentaixX . And @Revoxtical @CmP @bukandewa for reply this thread. thank you all
    1 point
  14. yes, welli just modificated his script, take a look. I rewrided the letters to its standard and also the gg.searchNumber that was copied and everything is in function now and its modificated so that when hack is finished the script wont close testing.lua
    1 point
  15. check my picture gg in your script is not use standart character
    1 point
  16. Wont deny there are alot of errors my friend Happend afther i outted eveything in function
    1 point
  17. This is can fix your script : You use not standart character. check your script if you copy paste from other script Remove 'goto START' then put the function ::START:: above ::sdone::
    1 point
  18. That's what I've been afraid of, by the time I figured out how to hack level xp I already had 2 creatures maxed and I was in the process of levelling up Fairy. For now, all you can do is wait and hope JC releases more creatures and hopefully one of them will have level 2 requirement, I'm so sorry I didn't think it would be this way.
    1 point
  19. ok i understand, i will try this !. thank you for helping me
    1 point
  20. You can't protect this bcz gg api not have hide searching process function and lua run in line by line not have multithread
    1 point
  21. CmP explained y9u can not do anything about that. So now just focus on the scripting. _______________________________________________ added 2 minutes later CmP explained y9u can not do anything about that. So now just focus on the scripting.
    1 point
  22. why new gg 8.68.3 cant find 1,0e-6 float Xa
    1 point
  23. You can't write like this. os.exit is a function and goto operator only works with labels. Either you make a call to the function (remove goto operator) or you jump to some label (replace os.exit() with label name), choose one option.
    1 point
  24. Unfortunately, as I have written, you CAN'T protect the strings that are being searched in your script. If the user is able to run the script, then he can also find out, what strings were searched by the script. There is built-in GG feature, that logs every call to GG API in a text file, so if your script executes, for example, gg.searchNumber('123', gg.TYPE_DWORD), then user will see it in log file.
    1 point
  25. hey its better in this case you let a experienced scripter explain, this. im not experienced in scripting, I just find cheats and put it in script a scrip with the scripting I learned on the HELP. but I do not understand why you are using "goto" and the code you wanne add is like "function", for what I learned function is better to use. change your hole scripts in to function.
    1 point
  26. Creatures timer and xp hack video if anyone needs it Level 1 Niffler bond might be 3 hours so you search 10800 seconds instead. https://www.youtube.com/watch?v=Eh-LHxhBR24
    1 point
  27. Not bad script, but it lacks error handling in some cases. Source code that you have published contains some unreadable symbols which cause lua interpreter to fail. Removed them and fixed indentation (other things weren't changed) decompiler.lua
    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.