Jump to content

Search the Community

Showing results for 'Huawei mate 10'.

  • Search By Tags

    Type tags separated by commas.
    For example, the common name of the game: PUBG, Free Fire, Rules of Survival, Critical Ops, Mobile Legends: Bang Bang, etc.
  • Search By Author

Content Type


Forums

  • GameGuardian
    • Requests
    • Help
    • Guides
    • Cheats
    • Video Tutorials
    • Unintended Effects
  • General
    • General Discussion
    • Introduce yourself (:
    • Announcements
    • Website suggestions/Bugs
  • Downloads Support
    • Apps
    • LUA scripts
  • Online Multiplayer Mods
    • Altering Online Games with Gameguardian
    • Download Mods
  • Other Hacks
    • Tutorials
    • Non-GameGuardian
  • Archive
    • Archived topics

Categories

  • Official Downloads
  • Virtual spaces (no root)
  • LUA scripts
    • Forward Assault
    • Free Fire
    • PUBG
    • Rules of Survival
    • Templates
    • Tools
  • Test applications
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Device


Discord ID

  1. View File Real Racing 3 (10.0.1) Distance Traveled Hack RACING 3 - DISTANCE TRAVELED HACK Working RR3: 9.8.2 Current version: 9.8.2.1.0 Description Add distance traveled to profile statistics. Instructions Play any race and run the script before the end adding the desired distance. Check 'compatibility mode' if you have problems running the script. Warning Do not add too high values, the maximum limit seems to be 2147483.8 kilometers, but at that point you cannot lower the value anymore. So before doing 'experiments' make a backup of your profile and keep it safe. Video Submitter MarioRossi93i Submitted 10/17/2021 Category LUA scripts  
  2. It's simple...when you're in your profile you can se the total amount of events completed...for example, I have 17290 events completed out of 17876 total available events. Now, if I use the autowin script on 10 events/races, then the number in my profile should increase by 10, so then I would have had to have 17300 completed events. If I see, that the number of events hasn't increased as expected, then it's wise to reload a previously saved game and repeat the autowin for the events. Hope, that helps to clear up the confusion...
  3. View File Hidden global-metadata.dat searcher Read before download! Finally i've done this one. There are games such as freefire, ace fishing which hide metadata. This script will give you the hidden metadata header. If the value of result address is 0 or any number which the first 4 bytes is not AF 1B B1 FA, metadata header has been probably obfuscated. Re-edit header value for valid use. This script is Open Source! I'll update script when i found new features. Big thanks to cmp and enyby. Submitter Lover1500 Submitted 10/15/2021 Category Tools  
  4. View File Angry Birds GO! This will change amount of gems and coins Primarily works on version 1.4.3 Submitter KPLFIELDRAM Submitted 10/15/2021 Category LUA scripts  
  5. Is that what you meant? If so what you need to do is search the amount of heroes you currently have X4. You then need to refine in the same way as other static values. So if your heroes are 10/10 you search 10X4 and refine >1000000000, <2000000000, =10X4 Don't banish a hunter and then refine 9X4. That doesn't work. You MUST refine as a static figure. I was left with about 600 results and I just edited the lot together. Now, it will only add one at a time. As long as you keep editing to at least one higher than you currently have it will add another. So, if you are 10/10 you can edit 11X4 or 100X4 or 9999X4 and it will just add one more. It won't change your max to that figure but it will just add another. No idea if that will lead to a ban at some point. There certainly was no instant ban doing it. I'll leave you to find that out If you're rooted you could try Titanium Backup. I'm not sure for un-rooted devices.
  6. View File Let's Survive Script by BadCase Works for ARM7 and ARM8 Submitter BadCase Submitted 10/14/2021 Category LUA scripts  
  7. CmP

    Set the value faster!

    Only as long as you keep GG running. To freeze values from script there is "addListItems" function. Set "freeze" field of tables to "true" for them to be frozen after the call to the function. For example: local results = gg.getResults(10) local values = {} for i, v in ipairs(results) do values[i] = {address = v.address + 0x1234, flags = gg.TYPE_DWORD, value = "4321", freeze = true} -- value will be frozen to 4321 end gg.addListItems(values)
  8. Try it (fixed): gg.searchNumber("2219816;6::25", gg.TYPE_DWORD) gg.refineNumber("2219816", gg.TYPE_DWORD) local results = gg.getResults(gg.getResultCount()) local t = {} for _, __ in next, results do t[#t + 1] = {__.address = __.address + 64, flags = __.flags, value = 7} t[#t + 1] = {__.address = __.address + 80, flags = __.flags, value = 8} t[#t + 1] = {__.address = __.address + 96, flags = __.flags, value = 9} t[#t + 1] = {__.address = __.address + 112, flags = __.flags, value = 10} t[#t + 1] = {__.address = __.address + 64, flags = __.flags, value = 7} end gg.setValues(t)
  9. CmP

    Set the value faster!

    Don't call "setValues" function in loop. The code above from @HEROGAMEOfficial's post illustrates the approach that should be used instead: construct table with all desired values and pass it to "setValues" function. Something like this: gg.searchNumber("2219816;6::25", gg.TYPE_DWORD) gg.refineNumber("2219816", gg.TYPE_DWORD) local count = gg.getResultsCount() local results = gg.getResults(count) local values = {} for i, v in ipairs(results) do local index = (i - 1) * 4 local addr = v.address values[index + 1] = {address = addr + 64, flags = gg.TYPE_DWORD, value = "7"} values[index + 2] = {address = addr + 80, flags = gg.TYPE_DWORD, value = "8"} values[index + 3] = {address = addr + 96, flags = gg.TYPE_DWORD, value = "9"} values[index + 4] = {address = addr + 112, flags = gg.TYPE_DWORD, value = "10"} end gg.setValues(values)
  10. Maybe it can help: gg.searchNumber("2219816;6::25", gg.TYPE_DWORD) gg.refineNumber("2219816", gg.TYPE_DWORD) local results = gg.getResults(gg.getResultCount()) local t = {} for _, __ in next, results do t[#t + 1] = {__.address = __.address + 64, flags = __.flags, __.value = 7} t[#t + 1] = {__.address = __.address + 80, flags = __.flags, __.value = 8} t[#t + 1] = {__.address = __.address + 96, flags = __.flags, __.value = 9} t[#t + 1] = {__.address = __.address + 112, flags = __.flags, __.value = 10} t[#t + 1] = {__.address = __.address + 64, flags = __.flags, __.value = 7} end gg.setValues(t)
  11. Hi! My code: function setVal (address, value) local t = {{ address = address, flags = 4, value = value, freeze = true, }} gg.setValues(t) end gg.searchNumber("2219816;6::25", gg.TYPE_DWORD) gg.refineNumber("2219816", gg.TYPE_DWORD) local p = gg.getResultCount() local m = gg.getResults(p) for i = 1,p do addr = m[i].address setVal (addr + 64, 7) setVal (addr + 80, 8) setVal (addr + 96, 9) setVal (addr + 112, 10) end my problem is that there are a lot of 2219816 values, and the modification takes a long time. Do you guys have any method that can help me to do it quickly? Thanks!
  12. View File Sausage man v0.1 Script Speed Submitter Cambofile Submitted 10/12/2021 Category LUA scripts  
  13. ok but for restore resistance is 10 seconds...so what number i need to put? also i need to serch before it start recovering? because how i can serch if i just have 10 seconds....pls explain what i need to do because didnt understand ty. or maybe u can just explain how to hack resistance from pg that is more fast
  14. Click on the hunters the you like on the waiting list, and in the top right click on "1st". and they will move to the top of the waiting list. their stats mostly differ based on their names, for instance man of steel is 10% DEF, Strong is 10%ATK. there are also negative characteristics. you can google hunter characteristics for the full list. You can also just banish some few legendaries and then make your own Legendaries or even Ultimate hunters using the awakening crystal in your special tab.
  15. Is it possible to do the golden ticket hack on Win 10 Homescapes? Do I have to use Cheat Engine or something? @NoFear
  16. Yep, looks like it is visual only and if you donate you get a ban. I don't think there's anything that can be done with Gexp. Only thing you could try is to change the amount of Gexp you earn. So if you earn 10 Gexp from defeating a field boss maybe you could make that a million. Would take a bit of effort to find out if it would work. Give it a try if you have another spare game and time to spare.
  17. i want on Gexp and gexp will get by doing dungeon 1 gexp per run, 10 per darkness portal and 10 per field boss Also u get 20 when u create guild
  18. View File Off the road coin hack Script to change amount of coins in game. Submitter Sandeep_Poudel Submitted 10/07/2021 Category LUA scripts  
  19. Screenrecorder-2021-10-08-12-24-35-787.mp4 Screenrecorder-2021-10-08-12-24-35-787.mp4
  20. View File Rogue Adventure: Quick & Easy Cheat Menu Hello everyone! I am currently making a small Mod Menu for the game Rogue Adventure. It's a turn-based strategy card game, but if you are looking for cheats for this game, you probably already know that. Today I was looking for a cheat menu for the game and since I couldn't find anything, I decided to quickly write one myself. This is my first time writing a script for Game Guardian, so the code is probably not the cleanest thing ever, but so far it does what it's supposed to, so I'm happy with that. It's currently still not finished, but I decided to share it anyways so if someone is interested in this, they will be able to keep an eye on new releases. Current Features: • Two methods of setting your Mana to 99 in the current battle (Quick for when you have the default amount of Mana, Manual for any non-standard values if you have any modifiers in your deck) • An interface to speed up the process and make it easy for inexperienced users Planned Features: • The option to set your coin amount to a desired value (a bit difficult because the number seems to be obfuscated) • The option to set your gems to any desired amount (same problem as with coins) • Any reasonable suggestions in the reply section Disclaimer: I'm doing this as a project for fun and to learn some stuff, so you probably shouldn't expect too much from it. If anyone more experienced has some additional advice for me, I would be happy to hear it! Submitter ItsWhoBe Submitted 10/05/2021 Category LUA scripts  
  21. View File Il2CppDumper Toolbox Free by BadCase This script loads a Il2CppDumper dump.cs file and allows you to. Search for methods using keywords. Edit methods with the press of a button. Create script functions from your edited methods. And generate a complete fully functional script without writing a single line of code. There is full help documentation at the bottom of each menu. Submitter BadCase Submitted 10/02/2021 Category Tools  
  22. aw d*** mate. any tips on what flagged the ban? I guess we will be joining you soon comrade
  23. Hello Everyone, List of Best Android Emulators for Windows 10 BlueStacks. BlueStacks is undoubtedly one of the best Android emulators that you can find on Windows. ... Gameloop (Tencent Gaming Buddy) ... Android Studio. ... LDPlayer. ... MEmu Play. ... Nox Player. ... PrimeOS. ... Genymotion. Thanks Daniel Charles
  24. When u have 10 result change the number of ball u want THEN u need to kill another pokemon and etvoila your ball will encrase BUT i noticed that if u take the ball from terrain your ball will stuck to 0 so eye.
  25. Ok so for the skill the seconds left are in the thousands. So 10 sec = 10xxxx etc. Resting at 0. Makes it pretty fast to find. Works in all modes. Works great but spam fireblast seemed a bit obvious lol.
×
×
  • 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.