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 Survivalist: Invasion PRO Package: Playstore https://play.google.com/store/apps/details?id=com.teslagamesglobal.survivalistpro 64 bit only / Armv8a Game Version: 0.0.6.1.6 Feature; 1. God Mode 2. Magic Stacks 20 3. Free Craft & Upgrade 4. Free Building & Upgrade 5. Finalize no parts 6. Unique Blueprint 7. Durability no decrease 8. Can Take Daily Rewards 9. Speedup Travel (Walk to run To actived) 10. Learning Points for Crafting +(60000) 11. Instant Crafting + Gold 255 12. Credits $60000 13. Free Shopping (Jill Sparrow / Salty Witch) my telegram: @kabuthitm grup telegram: t.me/+wYuS_O-YxI41ODVl my facebook: Kabut Hitamm Submitter KabutHitam Submitted 02/11/2023 Category LUA scripts  
  2. 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)
  3. Here you go. Do not edit fairy stones so you have more than 1,000,000. At like 999,999 area you will trigger cheat detection and game locks out features. This video shows 2 methods for hacking fairy stones. Method for time stones and the coins. For the coins you dword search how many of an item and what it sells for only 1. Top 3 items are 10 20 and 30. So if you have one of each, pick one to search. 1;30:5 That would be the 3rd item. Pick up some. Let's say you have 3. Search 3;30:5 Hopefully you have 2 results. 3 and 30. Goto address. Edit the 30 and the 0 directly below to something like 200,000,000. Now sell the item for huge payout.
  4. Name of Game:Zenonia 3 Game Version if known: Name of Cheat:GameGuardian 6.0 Search Regions Needed: 4byte (default is 4byte) Steps: Open both {game_name}, and GameGuardian. Search for hex code 0x81B4AEAC (this is for exp, your max level the first time you play is 60, 90 the second, and 99 the third) Change to 9999999 Search for hex code 0x81B4A5BC (this is for a stat, idk which one) Change to any number under 999990 Search for hex code 0x81B4A5C0 (this is for another stat) Change to any number under 999990 Search for hex code 0x81B4A5C4 (this is for another stat) Change to any number under 999990 Search for hex code 0x81B4A5B8 (this is for the last stat) Change to any number under 999990 Also, here is a modded version of the game. http://android-xtreme-apk.blogspot.com/2012/10/zenonia-3-mod.html
  5. View File GRIM SOUL: DARK SURVIVAL RPG Game Name: GRIM SOUL: DARK SURVIVAL RPG Package: APKCOMBO Architecture: 64 Bit Version: 4.4.0 FEATURES: 1- 1 HIT KILL BOW 2- HIGH ATTACK SPEED [LINKED] 3- PLAYER SPEED [LINKED] 4- MAX DURABILITY 5- MAX VIP 6- INSTANCE MOVE MAP 7- FREE CRAFT & UNLOCK BLUEPRINT 8- INSTANT WORKBENCH CRAFT 9- UNLIMITED FULE 10- FREE UPGRADE & FREE BUILDING 11- SPLIT SINGLE ITEMS 12- INSTANT LOOT & UNLOCK 13- ASSEMBLY WITHOUT MATERIAL CREDITS: Mode by LATOM Telegram: https://t.me/LATOM_HACKER Follow me for any update Enjoyed Submitter LatoM Submitted 11/07/2022 Category LUA scripts  
  6. MANDO01

    gg prompt

    Your array is missing an array here an example i made mo = { { {id = 1,name = "one Single Arrow "}, {id = 2,name = "two Rain Blue "}, {id = 3,name = "three Fire Arrow "}, {id = 4,name = "four Green Projectile"}, {id = 5,name = "five Black Spell "}, {id = 6,name = "six Blue Projectile "} },{ -- I'm sure 80% you forgot to add this in your array or any other array -- and game guardian will not tell you to add the missing "{" he will tell you to remove the closeing "}" . {id = 8,name = "some one "}, {id = 10,name = "some body "}, {id = 13,name = "some reason "}, {id = 15,name = "some thing "}, {id = 12,name = "some day "}, {id = 143,name = "some time "}, } } If you want to call this array it will be like print(itemsSpec[1][2]) -- {id = 2,name = "two Rain Blue "} print(itemsSpec[1][6]) -- {id = 6,name = "six Blue Projectile "} print(itemsSpec[2][1]) -- {id = 8,name = "some one "} print(itemsSpec[2][6]) -- {id = 143,name = "some time "} print(itemsSpec[2][2].id) -- 10 print(itemsSpec[2][3].name) -- some time -- if you forget the array the answers will be like this print(itemsSpec[1][2]) -- {id = 2,name = "two Rain Blue "} print(itemsSpec[1][6]) -- {id = 6,name = "six Blue Projectile "} print(itemsSpec[2][1]) -- nil print(itemsSpec[2][6]) -- nil print(itemsSpec[2][2].id) -- error print(itemsSpec[2][3].name) -- error If you forget the array this error will come to you
  7. Name of Game:CC Game Version if known:1.2.39 I just share how to hack damage and make hero immortal on VIP section You must at least 1 legend hero You download the new version SBgame hacker 2.6.3 Open game hacker Open game Using gamehacker search value 1081711002 and see 148 result your hero data in this 148 result for example your hero is succubus you dont check all you check line 20 and change it to 1999999999 go back to hero base of succubus and see the might if the might is high it means 20 is data of succubus if fail you try next number usually succubus 1star is 23 5star is 27 if you find the row of sucubus you press the line and choose view bound memory you see the blue line up to 4 line you can see 401XXXXXXXXX tap it and edit : choose byte and press 328448 ok -> strength it only affect legend hero sucubus is 20-30 champ 30 -40 druid 40-50 thor 50-60 death 70 90 ninja 10-20 paladin 140-10 another hero in 90-130 HB farm you can create clone acc.in main account you create guild and grant to clone acc. if you have 20 guild you can get 20x3500HB you must apply all 20 guild and log into every clone account to accept open boss and fight after winning you leave your guild and log in another clone acc open boss and fight .... i have 50 guild now
  8. View File Search results auto backup This script is a helper tool that automatically saves previous search results list so that it can be restored later. How to use: 1. Start the script. 2. Enter maximal count of saved results. 3. Perform the searches or any other results list modifications until you need to restore previous results list. 4. Activate script menu by pressing floating button with "Sx" text. This video can help to locate the button: https://gameguardian.net/forum/gallery/image/618-900-added-ui-button-for-scripts-gameguardian/ 5. Choose "Yes" to restore saved results list / choose "No" or cancel the dialogue to continue script execution / choose "Exit" to terminate the script. Submitter CmP Submitted 10/05/2019 Category Tools  
  9. View File Among Us Lua Here is my first script for among us game. Script isnt perfect. But I want you to try it cuz I use pointers in it. Super fast! In this script, -You can be crew even if you are imp. -You can be always imp if you are host. If you're not host you can only do sabotage. Kills will be only for your visions. They are not die really. (Can see other imps) -You can walk through walls. -For vision,you can see everything clearly in your range. (Even other side of walls) Please let me know errors of this script and recommend new features of hacks. Use only virtual exposed 32 bit or script wont work properly. Submitter Lover1500 Submitted 10/02/2020 Category LUA scripts  
  10. View File Script Vip Garena Free Fire By MarvinYT New Update Free Fire Hack 1.22.1 || Fitur Script Aimbot+Wallhack/No Recoil [UNDETECTED] Cek Video Terbaru Saya Link Download Ada Di Deskripsi Video Saya Di Channel Gilang Faisal Mod Menu Features: 1. Super Speed 2. Visual Expansion 3. No Recoil 4. Antenna Hack 5. Aim Assist 6. Big Body 7. Character Antenna 8. Visual Rise Hack 9. Bullet Through Wall 10.Flying In The Sky 11.Super jump 12.Anti-Ban 13.No Gras Find me out: ============================================= Twitter: http://twitter.com/Gilangfaisal153/ Instagram: http://instagram.com/Gilangfaisal53 Email : [email protected] Submitter gilangfaisall Submitted 08/29/18 Category LUA scripts
  11. you can use cheatengine on your tab ive used it on my phone it starts a server on the phone and you control it via cheatengine pn pc over network by connection on wifi but it takes me a minimum of 10 mins to search for anygiven value if not longer and thats assuming it dosent crash the game (which it often does) but like i said you need to control CE from your pc while hacking your tab and remember yout tab is not running the same type of processor as a windos based laptop its actually only the equiv of perhaps a celeron windows proc but that said its still like comparing apples to pineapples they share part of the name but are two totally different things simply because of how instructions are handled as well as os HAL(hardware access layer) instructions/interaction amongst 1000 other things
  12. You have just to check if the search result is empty. if (gg.getResultsCount() <= 0) then -- end And i see some logic issue with the script Here you call getResult 10 but you called getResult 1 just earlier, would make sense if you skipped the 1st result but you did not are u using flags 16 and 4 in some place on purpose or you missed ? i am a little bit confused in this context why are u calling remove list item knowing you just called addListItem just earlier with the same list ? ps: you can still optimize that operation by using one big loop that wrap everything, as i think about it it might not improve performance since you will be making the same number or search but for sure it will reduce code and repetition
  13. Doesn't work Script ended: Script error: luaj.o: /storage/emulated/0/Documents/TEST_UnlockJob.lua:33 ` {address = t[1].address - 0x8, flags = 4, value = 1},` attempt to index ? (a nil value) with key 'address' (field '1') level = 1, const = 33, proto = 0, upval = 1, vars = 10, code = 140 GETTABLE v8 v8 "address" ; PC 118 CODE 04428207 OP 7 A 8 B 8 C 266 Bx 4362 sBx -126709 stack traceback: /storage/emulated/0/Documents/TEST_UnlockJob.lua:33 in main chunk [Java]: in ? at luaj.LuaValue.f(src:989) at luaj.LuaValue.c(src:2864) at luaj.LuaValue.i(src:2767) at luaj.LuaValue.w(src:1094) at luaj.LuaClosure.a(src:363) at luaj.LuaClosure.l(src:160) at android.ext.Script.d(src:6056) at android.ext.Script$ScriptThread.run(src:5785)
  14. View File New Script Free Fire By Mrt3wUr Update Free Fire Hack 1.22.4 | No Recoil, Antenna & Aimbot [ANTI BANNED] ------------------------------------------------------------------------ Link Download Ada Di Deskripsi Video Di Channel Saya / Download links are in the description of videos on my channel Link Download Script Ajhackers : https://gameguardian.net/b02I1zUr Link Download Script Kevin Huy : https://gameguardian.net/zdaBybVF Feature • AIMLOCK 30% • FAST PARASUTE • WEATHER • SUPER SPEED • NO RECOIL • NO GRASS • RADAR • HIGH SCOPE • CAMERA WIDE • AURA MARS • RIFLE AN94/M14EBR DAMAGE HACK • SMG Mp5/Mp7 DAMAGE HACK • SR QBU/SVD DAMAGE HACK My Youtube Channel : https://www.youtube.com/channel/UCsOCzAarWdnRHllBaGiCkGw Submitter GilangFaisal Submitted 10/12/18 Category LUA scripts
  15. View File Westland Survival RPG Westland Survival RPG [ Risk To Ban, Don't Too Much Use Script ] Package: Playstore 64 bit only / Armv8a Game Version: 4.6.1 Feature; 1. God Mode ( New Methods ) 2. High Damage 3. Magic Stacks 20 4. Automatic Tasker Complete 5. Max Durability 6. Free Instant Craft / Building 7. Free Upgrade 8. Finalize no parts 9. Free Energy & Ride Travel 10. Can Take Daily Rewards *Not All can complete with automatic tasker *be careful to use this script, you can got ban my telegram: @kabuthitm group telegram: https://t.me/+wYuS_O-YxI41ODVl my facebook: Kabut Hitamm Submitter KabutHitam Submitted 02/07/2023 Category LUA scripts  
  16. + Name of Game:Shakes Spears Game Version if known:1.15 Name of Cheat: Gold and crystals + potions same steps for all Steps: Open both the Game, and MY game killer - gameki11er770cracked.apk works for both Path to glory and Act of valor - Path to glory - Act of Valor - Instructions - download my cracked or any paid Gamekiller My cracked GK - http://www.mediafire...eglxmfbi59gew07 select app by pressing inbuilt menu button search for your gold value press dword(0-4294967295) then change last 10-20 results to 0999,999,999 include zero infront or your gold will go zero Remeber you need over 1000-1250 gold to hack the game easily as i've done. Don't forget to like if i helped you by giving my precious instructions to you.
  17. Value is hex. 2 methods of search. Use the text search feature and search the price of one of the elixers. The text search is not UTF-16. When you get your results, do not replace. Scroll to the last result. The 56 byte value, edit to 45 (change the 8 to a -). Now the price is negative 500. If you want edit the dword 4 above to dword 8 (this is number of digits in price) then edit the next 4 bytes to 48 to 57 (48=0 57=9),I did all 48. Price is now negative 5000000. If you want to go larger, you can, just the next dword needs to be 0 following the price. The other search, byte search 4D;56;53;48;48::10 and following same steps as above for editing. I don't know max gem value, but it's over 2147483647, so no worries on that.
  18. I getting error while i loading script like Script berakhir: Kesalahan skrip: luaj.o: /storage/emulated/0/Download/TEST_UnlockJob32bit.lua:31 ` {address = t[1].address - 0x8, flags = 4, value = 1},` attempt to index ? (a nil value) with key 'address' (field '1') level = 1, const = 31, proto = 0, upval = 1, vars = 10, code = 142 GETTABLE v8 v8 "address" ; PC 120 CODE 04428207 OP 7 A 8 B 8 C 266 Bx 4362 sBx -126709 stack traceback: /storage/emulated/0/Download/TEST_UnlockJob32bit.lua:31 in main chunk [Java]: in ? at luaj.LuaValue.f(src:989) at luaj.LuaValue.c(src:2864) at luaj.LuaValue.i(src:2767) at luaj.LuaValue.w(src:1094) at luaj.LuaClosure.a(src:363) at luaj.LuaClosure.l(src:160) at android.ext.Script.d(src:6056) at android.ext.Script$ScriptThread.run(src:5785)
  19. Anonymous.... Its sad that your channel got deleted by you, but you re right.... Very right. There no point of hacking it if some don't understand, Kefir fixes it update by update, or some are just psychopaths like you said, they are just waiting for you to make mod, update script and in most situation, they cant do it. For me, most of your hacks worked well, infinite objects is a big success and i dont think it will be patched fast, its your first hack that gets done automatically and its great, now i am more ready for gameplay like normal person would. I hope you will update script if most of these will be patched... You don't have to update everything, i don't even think you should. For me, all you can update sometimes is unlimited objects, gas tank, gas fork, chopper wheels, one kind of food, water, heat sensor and thats all. Who needs more? Eventually, some crates can find place like explorer pack. Thanks for being with us for long time and helping.... Happily, i remember how to hack and there are other youtubers that uses your methods, so i am fine in there. Stay determined and be cool mate. I believe in you. Oh, and actually, i think replying to those who don't know how to hack with lua script, its not needed anymore, there no such a option how to. Cya
  20. So for those interested, I have reversed the formula to encode the STAGE variable: Excel formula to encode an offset: =((MOD(Floor(<STAGE>/64,1),2^1))*64+(MOD(Floor(<STAGE>/64,1),2^2)>=2)*-128+(MOD(Floor(<STAGE>/64,1),2^3)>=2^2)*256+(MOD(Floor(<STAGE>/64,1),2^4)>=2^3)*512+(MOD(Floor(<STAGE>/64,1),2^5)>=2^4)*-1024+(MOD(Floor(<STAGE>/64,1),2^6)>=2^5)*-2048)-MOD(<STAGE>,64)+ISODD(<STAGE>)*2 This offset is then added to a fixed number -1,908,683,586 Example Values: Stage 1 - Offset: +1 | Encoded: -1,908,683,585 Stage 2 - Offset: -2 | Encoded: -1,908,683,588 Stage 3 - Offset: -1 | Encoded: -1,908,683,587 Stage 4 - Offset: -4 | Encoded: -1,908,683,590 ... Stage 10 - Offset: -10 | Encoded: -1,908,683,593 Stage 100 - Offset: 28 | Encoded: -1,908,683,558 Stage 200 - Offset: -72 | Encoded: -1,908,683,658 Stage 400 - Offset: 112 | Encoded: -1,908,683,474 Stage 800 - Offset: 736 | Encoded: -1,908,682,850 Stage 1000 - Offset: 664 | Encoded: -1,908,682,922 Stage 1800 - Offset: -264 | Encoded: -1,908,683,850 Stage 2500 - Offset: -1860 | Encoded: -1,908,685,446 Stage 3000 - Offset: -1464 | Encoded: -1,908,685,050 Stage 3500 - Offset: -2988 | Encoded: -1,908,686,574 In theory, you can set yourself at Stage 3501 by using -1,908,686,573, but you will very likely get banned. Hope someone find this helpful.
  21. Oke, what is the structure of the game? Levels? How so you do not have a lobby? i mean the main menu. were you enter after the game has loaded all his data. I just checked on the web about the game, you can not walk. Its either Ca or A, and must be float or double. i believe in this type of game must be float. Pick up a gun, find its aimo and search the the float values between 0.01 - 4f, try to find maximum 10 of those below and above the adress of the gun value. edit them and see what they do. if one gives a aimlock or a sercent change to the gun, copy the value and search it again and edit all your results and see what happens. Never played this type of game but it should be similair to a multiplayer shooter game.
  22. Most would get mad because of the scores, but it still keeps part of the game fun. I showed in earlier post and tried explaining in detail but i havent made a video on it simply because its more time spent searching for combination data. When you get it, its not hard. Be mindful that data might not be found on 1st try. Do some in game action so data changes and search again _______________________________________________ added 4 minutes later Thats the part you have to learn. ;D Experiment and see what happens. I cannot tell all so all are on same page. You will get Only downside to artacking ao many times. It takes that long for your energy to regen. If you launch 10 movie monsters, it will take roughly 20hrs before you see 1 energy. So use cautiously
  23. Not always. Lets say: -the game has a lot of small levels. -you can't use the currency you gain in game mode. Lets say level has 10 battles that might give You currency. Initial scan would be unknown. If You get a battle with no currency gain then You do get rid of counter values. Means You do need to find the value with max of 11 scans. You can't use specific scan and initial scan being unknown won't allow you to get rid of enough values to make it possible to find the right one. Lets say You get lucky few times and You do get the AoB with correct wildcards. You still aren't able to find the value easily later on since You can't scan for array of bytes.
  24. Game Guardian Cheat: Tiny Monsters 1.) Open Game Guardian 2.) Open Tiny Monsters 3.) Click habitat (I chose large earth cause it has the highest max) 4.) Fuzzy search for "larger" 5.) repeat step 4 to lessen the range of cheats. 6.) Back out of Game Guardian search and collect habbitat. 7.) Fuzzy search for "smaller" 8.) Fuzzy search for larger again. 9.) Look for a number closest to the amount of coins int he habitat you want to modify (you open the habitat first so you can see the actual amount in bottom left of screen) 10.) Long press the one you think is right and change the amount to 7500 Press it to save and type a name like money and check the box to lock it. 11.) Collect like mad. Video:
  25. Hi Guys. Open the script with any text editor, the comments say what needs to be done for new versions of the game. Specifically for version 12.6.1 you need to change: local Events = { -- For RR3 v12.5 'HUAYRA ROYALE (Flashback) - August 20, 2024', 'Ferrari 296 GTB TTC - August 26, 2024', "F1 PIRELLI GP D'ITALIA 2024 (Race Day) - August 27, 2024", 'TRACK DAY: MONZA SP1 (Flashback) - September 1, 2024', 'Acura NSX GT3 LTS - September 6, 2024', 'GT3 Challenge TTC - September 10, 2024', 'Jaguar C-X75 R3 Spec LTS - September 11, 2024', 'F1 SINGAPORE GP 2024 (Race Day) - September 16, 2024', } local Date = { -- For RR3 v12.6 '2024082000', '2024082600', '2024082700', '2024090100', '2024090600', '2024091000', '2024091100', '2024091600', }
×
×
  • 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.