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. Tq for the quick update. cheers mate
  2. Never mind i have just done some research and find out coroutine actually block the main thread even it is executed in another state i have done some test local thread2 = coroutine.create(function () for i =1, 10 do print ("thread2") end end) local thread1 = coroutine.create(function () coroutine.resume(thread2) print ("thread1") end) coroutine.resume(thread1)
  3. THETWINSOFFICIAL

    8 ball

    -- Script 8 Ball Pool Long Line: gg.clearResults() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber('10.3', gg.TYPE_FLOAT) local t = {} for k, v in ipairs(gg.getResults(10)) do for i = 1, 16 do table.insert(t, { address = v.address + i * 4, flags = gg.TYPE_FLOAT, value = 251 }) end end gg.setValues(t) gg.clearResults() -- @tis_nquyen
  4. i also found a value to speed up repair order for damage substations. make some damage to the sub(use AA gun) search Float 120 then set to 1. there will be a lot of results..select results in sets of number and edit..you'll know you get it right when you get notification instantly. but wont work if damage with Flooding. Screenrecorder-2022-05-02-10-20-38-350.mp4
  5. What's this 10/10 ? Yes ITS no good for one hit or good mode can be tricked but it's very complicated, when your character attacks you can increase the value and when the enemy attacks you can lower the value
  6. that's no good then.. if godmode means enemy could get godmode as well.... how about the moves? like it's always 10/10.
  7. Here you are doing concatenation of a number with string "0x" this will result a string because that what concatenation do, and since the function string.format are expecting an integer to be passed as argument this will result an error. Actually you don't need to convert hex value to integer since Lua do it automatically you can try this local x = 0xA print (x) --> 10 Except if your value is a string no conversion will be done local x = "0xA" print (x) --> "0xA" If you have a hex value as a string you will need to use the function tonumber instead and he doesn't require the "0x" before local x = "A" print (tonumber(x, 16)) --> 10
  8. Look at function number 2 (selectconditions) and the last function (searchandrefine). When I run this and select some stuff, it says there is an attempt to index a nil value (encrypted) in function searchandrefine. But I clearly define encrypted as encrypted = gg.multiChoice in function selectconditions. Can someone please fix my code? Thanks! function wait_for_action() gg.setVisible(false) while true do gg.sleep(500) if gg.isVisible()then break end end end function selectconditions(encrypted) if encrypted == 1 then encrypted = gg.multiChoice({'Encrypted'},nil,'Is the value encrypted?') end signs = {gg.SIGN_EQUAL,gg.SIGN_NOT_EQUAL,gg.SIGN_GREATER_,gg.SIGN_LESS,gg.SIGN_GREATER_OR_EQUAL,gg.SIGN_LESS_OR_EQUAL} signchoice = gg.multiChoice({'=',' ≠','>','<',' ≥','≤'},nil,'What condition?') i = 0 while not signchoice[i] do i = i + 1 end sign = signs[i] end function selecttype() menu = gg.multiChoice({'Auto','Dword','Float','Double','Word','Byte','Qword','Xor'},nil,'What type to search?') if menu == nil then else if menu[1] then a = 1 type = gg.TYPE_AUTO end if menu[2] then a = 1 type = gg.TYPE_DWORD end if menu[3] then a = 1 type = gg.TYPE_FLOAT end if menu[4] then a = 1 type = gg.TYPE_DOUBLE end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end end while a == 0 do a = 0 menu = gg.multiChoice({'Auto','Dword','Float','Double','Word','Byte','Qword','Xor',},nil,'What type to search?') if menu == nil then else if menu[1] then a = 1 type = gg.TYPE_AUTO end if menu[2] then a = 1 type = gg.TYPE_DWORD end if menu[3] then a = 1 type = gg.TYPE_FLOAT end if menu[4] then a = 1 type = gg.TYPE_DOUBLE end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end end end end function selectranges() menu = gg.multiChoice({'Jh: Java heap','Ch: C++ heap','Ca: C++ alloc','Cd: C++ .data','Cb: C++ .bss','PS:PPSSPP','A: Anonymous','J: Java','S: Stack','A: Ashmen','V: Video','O: Other','B: Bad','Xa: Code app','Xs: Code system','Reset','All'},nil,"Select memory ranges. If you don’t know what this is, select “All”.") ranges = "" if menu[1] then ranges = ranges .. "gg.REGION_JAVA_HEAP | " end if menu[2] then ranges = ranges .. "gg.REGION_C_HEAP | " end if menu[3] then ranges = ranges .. "gg.REGION_C_ALLOC | " end if menu[4] then ranges = ranges .. "gg.REGION_C_DATA | " end if menu[5] then a = 1 type = gg.TYPE_WORD end if menu[6] then a = 1 type = gg.TYPE_BYTE end if menu[7] then a = 1 type = gg.TYPE_QWORD end if menu[8] then a = 1 type = gg.TYPE_XOR end gg.setRanges(ranges) end end function searchandrefine() gg.clearResults() selecttype() selectconditions(1) value = gg.prompt({[1] = 'What is the value?'}, {[1] = '0'}, {[1] = 'text'}) gg.searchNumber(value[1], type, encrypted[1], sign) while gg.getResultsCount() > 10 do gg.alert('Make the value change, then click the gameguardian icon.') wait_for_action() gg.refineNumber(value[1], type, encrypted[1], sign) value = gg.prompt({[1] = 'What has the value changed to?'}, {[1] = '0'}, {[1] = 'text'}) end continue = gg.multiChoice({'There are' .. gg.getResultsCount() .. 'results left. Would you like to continue refining?'},nil,'') while continue[1] or gg.getResultsCount() < 2 do gg.alert('Make the value change, then click the gameguardian icon.') wait_for_action() gg.refineNumber(value[1], type, encrypted[1], sign) value = gg.prompt({[1] = 'What has the value changed to?'}, {[1] = '0'}, {[1] = 'text'}) continue = gg.multiChoice({'There are' .. gg.getResultsCount() .. 'results left. Would you like to continue refining?'},nil,'') end end searchandrefine()
  9. Search the amount you have dword, then gain or use some and refine. Helps to pause the game in GG when doing searches. You end up with one result which you can edit to 10 and freeze. I'm not convinced by your statement of not having "server sided" protection. I'm sure my game kept reloading afterwards. I didn't play with it for too long though so you might be correct.
  10. If it is those then Elixir is just dword and for me in "Other" memory range. Find the value and just make it 10 and freeze.
  11. Vinquef

    Android 12?

    I hate android 12 it was only caused problems, all cloner apps breaking completely and with the devs in deep sleep I have found hell trying to solve this problem, I have a Xiaomi Redmi note 10 android 12 and I can't get GG to work, all possible solving methods mentioned in this have not worked and only got me half way to solving it giving me a no binary for your arch error, can someone give a uniform answer or way to solve it?
  12. View File Pixel Gun 3D Weapon Unlocker Unlock almost all guns in pixel gun 3d! Notice: This script is abandoned. I will not be updating, maintaining, or helping with it. Please do not ask me for help finding ids, report bugs with the script, or ask for help using it. Update: @red091753has adopted this script and is actively maintaining and updating it: PG3D all weapon unlocker - LUA scripts - GameGuardian. If you have any feedback, suggestions, or questions, ask there, not here. Armor unlock script is done and will be coming soon! Weapon spoofer script is done and will be coming soon! Unlock at your level instead of level 1 script is done and will be coming soon! Use illegal weapons like bone knife script is done and will be coming soon! Unlock UNCOMMON GUNS script is done and will be coming soon! Do you want necklace of the ice king, spirit staff, and ultimatum? How about heart of volcano, desert fighter, and iron sword? No? Maybe ice paws, activity neutralizer, and cyclops sling? Unlock all your dream guns with pixel gun 3d weapon unlocker, with only the click of a button! This hack comes with 500 of the most wanted weapons! 4.3 is now out! And it has 5 times as many buyable weapons! Notes: -Some weapons do not have buy buttons. If a weapon does not have a buy button, you cannot buy it (Update: In 22.4.0, the devs unpatched it and now they all do!) -This mod does not get you the guns for free. You still need currency. However, I am working on a currency hack at the moment! I will post it once it is done. -This script takes about 10-50 minutes because it has to search and edit about 2000 values. -You can manually add your own ids if you have extra ids, or if you just don't want to wait for all the ids. Contact me: User123456789#6424 on discord. Credits: Script 100% by me (HorridModz) Some weapon IDs by me, but about 80% are by my friends. G_M#5963 is the only one who wants credit. Submitter HorridModz Submitted 04/10/2022 Category LUA scripts  
  13. View File COUNTER TERRORIST ONLINE SCRIPT MENU PLAY BOTH ONLINE AND OFFLINE, YOU WILL LOVE THE SHOOTING EXPERIENCE ON YOUR MOBILE DEVICE! IT IS FREE TO PLAY! LUA OPEN SOURCE: CLICK ME GAME LINK: CLICK ME IF YOU TEST THE SCRIPT, PLEASE COME BACK HERE AND LEAVE A COMMENT. Submitter Collen Submitted 04/10/2022 Category LUA scripts  
  14. Version 5.0 beautified

    38,867 downloads

    Unlock almost all guns in pixel gun 3d! Notice: This script is abandoned. I will not be updating, maintaining, or helping with it. Please do not ask me for help finding ids, report bugs with the script, or ask for help using it. Update: @red091753has adopted this script and is actively maintaining and updating it: PG3D all weapon unlocker - LUA scripts - GameGuardian. If you have any feedback, suggestions, or questions, ask there, not here. Armor unlock script is done and will be coming soon! Weapon spoofer script is done and will be coming soon! Unlock at your level instead of level 1 script is done and will be coming soon! Use illegal weapons like bone knife script is done and will be coming soon! Unlock UNCOMMON GUNS script is done and will be coming soon! Do you want necklace of the ice king, spirit staff, and ultimatum? How about heart of volcano, desert fighter, and iron sword? No? Maybe ice paws, activity neutralizer, and cyclops sling? Unlock all your dream guns with pixel gun 3d weapon unlocker, with only the click of a button! This hack comes with 500 of the most wanted weapons! 4.3 is now out! And it has 5 times as many buyable weapons! Notes: -Some weapons do not have buy buttons. If a weapon does not have a buy button, you cannot buy it (Update: In 22.4.0, the devs unpatched it and now they all do!) -This mod does not get you the guns for free. You still need currency. However, I am working on a currency hack at the moment! I will post it once it is done. -This script takes about 10-50 minutes because it has to search and edit about 2000 values. -You can manually add your own ids if you have extra ids, or if you just don't want to wait for all the ids. Contact me: User123456789#6424 on discord. Credits: Script 100% by me (HorridModz) Some weapon IDs by me, but about 80% are by my friends. G_M#5963 is the only one who wants credit.
  15. Buffo

    Android 12?

    Same here with my S22 (Android 12) Same exact problem with Android 11 on my old smartphone. Parallel space is the only virtual space my game works with, which otherwise detects root and does not start. But I've never been able to get GG to work from Android 10 onwards. I had found a modified version of Parallel Space, but the game didn't work there, it crashed on startup. So, sadly, not solution for me.
  16. When you first start like you did you only get 6, then the next week 7 and so on until you reach 10 then that is the max. I have used glitches to aquire more tasks but it's long winded and doesn't always work. So at the max the most a person can earp is 4200 points if played legitimately. I want to know if a scripts can be written to get more to beat the others using glitches and getting upto 40,000 points per farm.
  17. View File BadCase's Toolbox New Hooking and calling methods with Il2Cpp Edits by Name Plugin This is a plugin based script aimed mainly at finding edits and creating scripts for Unity based games but can be extended via plugin to do whatever you are capable of scripting for any type of game. You can import dump.cs (Il2CppDumper) and types.cs (Il2CppInspector) files. My Il2Cpp Fields and Edit by Name scripts are included as plugins with improvements over the original scripts for making edits. You can export standalone scripts using the edits made with the plugins. Do not delete the BC_DATA directory that is created or the files inside of it and its subdirectories. Info for creating plugins: A template for creating plugins is in the downloads list with the toolbox. -- To load data from dump.cs or types.cs, user will be prompted to select a dump.cs or types.cs file if a saved json with processed dump data is not found in the scripts data directory. dumpHandler.loadDumpData() -- To make the script return to your plugins main menu instead of the scripts main menu when the floating [Sx] button is pressed. pluginManager.returnHome = true pluginManager.returnPluginTable = "yourScriptsFunctionTableHere" To make normal functionality return to the floating [Sx] button. pluginManager.returnHome = false -- Search results from the built in dump search plugins are stored in the following tables which reference dump_cs_table The tables are created upon loading the search plugin. Method results dumpSearcher.methodResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].methods[10] Field results dumpSearcher.fieldResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].fields[10] Enum dumpSearcher.enumResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].fields[10] -- Your plugin should be based on the plugin template and have a unique function table name, there should at minimum be a function named "home" in the function table. Submitter BadCase Submitted 03/29/2022 Category Tools  
  18. Version 1.2.6

    7,492 downloads

    New Hooking and calling methods with Il2Cpp Edits by Name Plugin This is a plugin based script aimed mainly at finding edits and creating scripts for Unity based games but can be extended via plugin to do whatever you are capable of scripting for any type of game. You can import dump.cs (Il2CppDumper) and types.cs (Il2CppInspector) files. My Il2Cpp Fields and Edit by Name scripts are included as plugins with improvements over the original scripts for making edits. You can export standalone scripts using the edits made with the plugins. Do not delete the BC_DATA directory that is created or the files inside of it and its subdirectories. Info for creating plugins: A template for creating plugins is in the downloads list with the toolbox. -- To load data from dump.cs or types.cs, user will be prompted to select a dump.cs or types.cs file if a saved json with processed dump data is not found in the scripts data directory. dumpHandler.loadDumpData() -- To make the script return to your plugins main menu instead of the scripts main menu when the floating [Sx] button is pressed. pluginManager.returnHome = true pluginManager.returnPluginTable = "yourScriptsFunctionTableHere" To make normal functionality return to the floating [Sx] button. pluginManager.returnHome = false -- Search results from the built in dump search plugins are stored in the following tables which reference dump_cs_table The tables are created upon loading the search plugin. Method results dumpSearcher.methodResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].methods[10] Field results dumpSearcher.fieldResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].fields[10] Enum dumpSearcher.enumResults = { {1,10} } -- this would be one result referencing dump_cs_table[1].fields[10] -- Your plugin should be based on the plugin template and have a unique function table name, there should at minimum be a function named "home" in the function table.
  19. thats strange.. you had been here since April 10 2020. its almost 2 years..thats not new anymore. havent you learn anything since that? and you always ask for video where written details given are more than enough. part of learning is exploring by trials and errors.
  20. View File PUBG 2022 Emulator Bypass This is pubg mobile emulator bypass ONLY!! Be aware do use Guess account first for 5 or more games!! Be aware do use Guess account first for 5 or more games!! Password : MasterLevi2 If you have any problem do contact me in telegram https://t.me/MasterLevi2 It required your own bypass for 10 min & 2month Submitter SmilingSword Submitted 03/16/2022 Category PUBG  
  21. View File Auto speedhack finder Description: This script is made for those that either get error when using in build speed or those that have issues finding their own speed value and don't want to go through the trouble of spending 10+ min refining values. Requirements: Unity game Submitter nok1a Submitted 03/13/2022 Category Tools  
  22. View File SCRIPT PUBG MOBILE BY XILIOS password : XILIOS ( in capital letters ) thanks for use my script expire date : 2022-10-01 ঔৣ͜͡➳ ᴘᴜʙɢ xɪʟɪᴏs. ঔৣ͜͡➳『ᴇɴᴄ ʙʏ xɪʟɪᴏs』.lua Submitter Xilios Submitted 03/10/2022 Category LUA scripts  
  23. @cisco72563made this list with the old season items. Yes, a dog Corgi and a dog house (Season 1 First Season of Wonders) , 4 rabbits and a rabbit house (Season 2 Cottontail season), a robot (Ellie) and it's upgrades (Season 3 Tech Season), a grand piano, it's upgrades and a phantom costume for Austin (Season 4 Spooky Season), an ice rink and it's upgrades (Season 5 Icy Season), dumbbells and other exercise equipment (Season 6 Workout Season), a piglet and it's costume and house (Season 7 Farm Season), magician furniture and magician dress for Austin (Season 8 Magic Season), a puppet theater and puppets (Season 9 Puppet Theater Season), a labrador and it's playground with upgrades (Season 10 Tail-Wagging Season), dance floor and upgrades for Austin parents (Season 11 Dance Season), pirate ship and upgrades (Season 12 Pirate Season), toy ghost and some decor for it like town and performance (Season 13 Creepy Season), a carousel and it's upgrades (Season 14 Holiday Season), a flying drone robot and it's upgrades with charger (Season 15 Technological Season) and swans, couple and family (Season 16 Swan Season).
  24. Version 1.1.0

    24,007 downloads

    Description: This script is made for those that either get error when using in build speed or those that have issues finding their own speed value and don't want to go through the trouble of spending 10+ min refining values. Requirements: Unity game
  25. Version 1.2

    1,196 downloads

    password : XILIOS ( in capital letters ) thanks for use my script expire date : 2022-10-01 ঔৣ͜͡➳ ᴘᴜʙɢ xɪʟɪᴏs. ঔৣ͜͡➳『ᴇɴᴄ ʙʏ xɪʟɪᴏs』.lua
×
×
  • 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.