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. [ @_yourram ] --- No, you can still obtain all the value from the saved list and filter the items based on 'name'. In your script, you didn't even add 'name' key into 'control' table, you just straight add them all: control = gg.getResults(10) gg.addListItems(control) --- gg.loadResults(gg.getListItems(control)) This is wrong, gg.getListItems(): will take all items from savedlist, you can't specified it. What you can is: gg.loadResults(control) --- while true do if gg.isVisible() then gg.setVisible(false) Main() end end end This part is wrong, you have multiple 'end' just for 'Main()' function. It will also contradict another 'while true do' you put earlier. --- Here I fixed it: function menus() choices = gg.choice({'Prepare Values','Search','Undo','Exit'}) if choices == nil then os.exit() else if choices == 4 then os.exit() else prepares(choices) end end end function prepares(choices) if choices == 1 then -------------control-------------------- gg.searchNumber('55;873', 16) gg.refineNumber('55', 16) control = gg.getResults(gg.getResultsCount()) gg.clearResults() -------------health -------------------- gg.searchNumber('47;67', 16) gg.refineNumber('47', 16) health = gg.getResults(gg.getResultsCount()) gg.clearResults() -------------energy -------------------- gg.searchNumber('666;32;47', 16) gg.refineNumber('47', 16) energy = gg.getResults(gg.getResultsCount()) gg.clearResults() elseif choices == 2 then -------------control-------------------- gg.loadResults(control) gg.editAll('-55', gg.TYPE_FLOAT) gg.clearResults() -------------health -------------------- gg.loadResults(health) gg.editAll('0', gg.TYPE_FLOAT) gg.clearResults() -------------energy -------------------- gg.loadResults(energy) gg.editAll('999', gg.TYPE_FLOAT) gg.clearResults() elseif choices == 3 then -------------control-------------------- gg.loadResults(control) gg.editAll('55', gg.TYPE_FLOAT) gg.clearResults() -------------health -------------------- gg.loadResults(health) gg.editAll('47', gg.TYPE_FLOAT) gg.clearResults() -------------energy -------------------- gg.loadResults(energy) gg.editAll('47', gg.TYPE_FLOAT) gg.clearResults() end end knxs = false while true do if gg.isVisible(true) then knxs = true else knxs = false end if knxs == true then menus() else gg.setVisible(false) end end ---
  2. [ @kiynox ] thanks buddy! one more question ↓ is it useless to save values with different names? because when we use gg.loadResults(gg.getListItems(energy)) or gg.loadResults(gg.getListItems(health)) it gets all the values, well there is also an option for this we can use "refineNumber" but still it is useless for values which have same value. Example ↓ function Main() Menu = gg.choice({'Prepare Values','Search','Undo','Exit'}) if Menu == 1 then FIRST() end if Menu == 2 then FIRST1() end if Menu == 3 then FIRST2() end if Menu == 4 then Exit()end while true do if gg.isVisible() then gg.setVisible(false) Main() end end end function FIRST() -------------control -------------------- gg.searchNumber('55;873', 16) gg.refineNumber('55', 16) control = gg.getResults(10) gg.addListItems(control) gg.clearResults() -------------health -------------------- gg.clearResults() gg.searchNumber('47;67', 16) gg.refineNumber('47', 16) health = gg.getResults(10) gg.addListItems(health) gg.clearResults() -------------energy -------------------- gg.searchNumber('666;32;47', 16) gg.refineNumber('47', 16) energy = gg.getResults(10) gg.addListItems(engery) gg.clearResults() end function FIRST1() -------------control-------------------- gg.loadResults(gg.getListItems(control)) gg.refineNumber('55',16) gg.getResults(100) gg.editAll('-55', 16) gg.clearResults() -------------health -------------------- gg.clearResults() gg.loadResults(gg.getListItems(health)) gg.refineNumber('47',16) gg.getResults(100) gg.editAll('0', 16) gg.clearResults() -------------energy -------------------- gg.loadResults(gg.getListItems(energy)) gg.refineNumber('47',16) gg.getResults(100) gg.editAll('999', 16) gg.clearResults() end function FIRST2() -------------control-------------------- gg.loadResults(gg.getListItems(control)) gg.refineNumber('-55',16) gg.getResults(100) gg.editAll('55', 16) gg.clearResults() -------------health -------------------- gg.clearResults() gg.loadResults(gg.getListItems(health)) gg.refineNumber('0',16) gg.getResults(100) gg.editAll('47', 16) gg.clearResults() -------------energy -------------------- gg.loadResults(gg.getListItems(energy)) gg.refineNumber('999',16) gg.getResults(100) gg.editAll('47', 16) gg.clearResults() end function Exit() os.exit() end GOD=-1 while(true)do if gg.isVisible(true) then GOD=1 gg.setVisible(false) end if GOD==1 then Main() end end
  3. Oke i understand, so the problem here is the scripting. I can't explain scripting that well compared to other members in the forum. But you should start by running the print() function to print out your tables and have some understanding of what the script is doing. Use --[[ ]] to ignore most of your code and let GG does it thing line by line. Start with doing the group search, then refine and then store the results in a new table named "t" and print it out...something like this. gg.searchNumber("-1,049,624,576A;1,092,616,192A;1,082,130,432A;1,056,964,608A;1,062,333,317A::73", gg.TYPE_DWORD) gg.refineNumber("-1,049,624,576A", gg.TYPE_DWORD) local t = gg.getResults(10) print(t) Then analyze what GG respond. Make sure GG ignores the rest of the code by placing it as a comment: Also check in the GG scripting documentation what it is that you writted
  4. Just search, refine and edit your resource amount with X4 after it. If you have 10 of a resource you search 10X4. Refine in the same way and when editing remember to put X4 after the amount you want to change it to.
  5. Thanks for the reply I tried disabling the flag in Developer Options but it didn't help. For example, I searched for DWORD value '10' in CSR 2 and the search reached to about 80-90% before GG got killed. I did monitor RAM usage with FKM and once it goes above 90% it force closes GG. Edit: Just to make sure I rebooted after turning the flag. Just in case. Yeah I remember back in A10-11 didn't have this problem. Good ol' Google back at it again I guess.
  6. For the fear you need at least enough currencies (Souls or coins, I'm not exactly sure the exact amount but from what i've learned from Angelwolf you need 50 for either one) Then go in the halloween tab in the cash shop and do the addCurrency and spendCurrency trick that Angelwolf have taught us. Use the soul currency to purchase coins so you can buy the 10 fear lol I'm not skilled enough to inject directly like 1kkk fear and the 5 minions. The minions is the only way for you to get fear after the event has ended.
  7. Just connecting dods that perhaps is useful for others. Btw can you try as shown in the video?: And on top of that also try this group search, its in region A, Ca or Cb...ranges changes at restart...could also be ranges Other actually: 327,684D;22D;28D;0D;33,554,931D::65 bandicam 2024-01-04 02-10-29-895.mp4
  8. @CmP thanks, but still i have a question how can I edit multiple values when using this? Example ↓ gg.clearResults() gg.searchNumber("-7041975695332343808", 32) gg.refineNumber("-7041975695332343808", 32) local results = gg.getResults(10) gg.clearResults() local values = {} for i, v in ipairs(results) do values[i] = {address = v.address + 0x10, flags = 16, value = "100", name = "Health"} end local values = {} for i, v in ipairs(results) do values[i] = {address = v.address - 0x16, flags = 16, value = "-140", name = "Power"} end gg.setValues(values) gg.addListItems(values)
  9. GG API function calls such as "setValues" and "addListItems" are quite expensive in comparison to several lua instructions, so less calls will be more efficient in almost all cases. But the difference may be noticeable only when many values are set/added, for 10 values it won't be.
  10. local gg = gg local s = -7041975695332343808 gg.clearResults() gg.searchNumber(s,0x20) if gg.getResultCount()==0 then print('No results found.') os.exit() end local t = gg.getResults(10) for i,v in ipairs(t) do v.flags = 0x10 v.value = 0x64 v.name = 'text' gg.setValues({v}) gg.addListItems({v}) end gg.clearResults() I suggest you read the gameguardian help to better understand how it works
  11. It's done exactly as in his example. For your code it may be: gg.clearResults() gg.searchNumber("-7041975695332343808", 32) gg.refineNumber("-7041975695332343808", 32) local results = gg.getResults(10) gg.clearResults() local values = {} for i, v in ipairs(results) do values[i] = {address = v.address, flags = 16, value = "100", name = "Custom name"} end gg.setValues(values) gg.addListItems(values)
  12. @MarioRossi93i sorry but can we can't change "address name" in this? gg.clearResults() gg.searchNumber("-7041975695332343808", 32) gg.refineNumber("-7041975695332343808", 32) local t = gg.getResults(10) gg.clearResults() e = {1} b = {} for i,v in pairs(e) do table.insert(b, {address = t[1].address - 0x0;flags = 16; value = '100'}) end gg.setValues(t) gg.addListItems(t) b = {}
  13. local gg = gg local s = 8243116118139470284 local offset = { 0x30, 0x10 } local r = {} gg.clearResults() gg.searchNumber(s,0x20) if gg.getResultCount()==0 then print('No results found.') os.exit() end local t = gg.getResults(10) for i,v in ipairs(t) do r = { [1] = { address = v.address-offset[1], flags = 0x1, value = 0, name = 'Ram '..i..',1' }, [2] = { address = v.address+offset[2], flags = 0x10, value = 0x30, freeze = true, name = 'Ram '..i..',2' }, } gg.setValues(r) gg.addListItems(r) end gg.clearResults() this should works
  14. No, you don't need to increase your health with a medkit. You can decrease your health too if you want and it works as long as you don't die before you reach 10 or less values. But obviously if you're about to die and you still have a ton of results then you would naturally need to increase your health to be able to continue filtering for the correct value. By the way when taking damage, the value sometimes increases even though it should logically decrease and the opposite is true. As such I only execute a "changed" scan. Sometimes it gets glitchy and the only way I can find it is with an unknown search as you did. You don't need to use -9,999,999.0. You can simply freeze it. No, I don't always get a high health when editing to -9,999,999.0. Sometimes it randomly changes to 1 for me too as it did with you, in which case I simply just change it to -0.5 and that gives a high health. And yes the pointers are at the same distance from the health value for me too. Yeah unfortunately I had a feeling this would be the case. After my original post, the more I explored and the deeper I dug, the more evident it became to me that this wasn't going to be easily done through GG, if even at all possible. I truly do appreciate your efforts and the time you have put into this to try to help me. Thanks a lot.
  15. Hello all so , i was wondering if anyone knew if it was possible to give Values Custom names , For example i have 10 listed items , range from 1-10 , each value being identified as a diffrent item in the game , So if i wanna change 4 to "OLIVES" Instead of "VAR123456 blah blah blah" . i hope i explained myself well thanks in advance !!
  16. gg.clearResults() gg.searchNumber("-7041975695332343808", 32) gg.refineNumber("-7041975695332343808", 32) local t = gg.getResults(10) gg.clearResults() e = {1} b = {} for i,v in pairs(e) do ------------- first step [doesn't working] table.insert(b, {address = t[1].address - 0x0; t[1].name = 'Ram';flags = 16; value = '100'}) end gg.setValues(t) gg.addListItems(t) b = {} ------------- second step [doesn't working] table.insert(b, {address = t[1].address - 0x0;name = t[1].name = 'Ram';flags = 16; value = '100'}) end gg.setValues(t) gg.addListItems(t) b = {} ------------- third step [doesn't working] table.insert(b, {address = t[1].address - 0x0;name = 'Ram';flags = 16; value = '100'}) end gg.setValues(t) gg.addListItems(t) b = {} can you also give me an example how to work this function in this command?
  17. You can just download a mod from 5playru. It has infinite health. You can even login with your own account. I've used their mods before and they have antiban. So you won't be banned. If for some reason you don't want to use the mod and you want to hack it yourself the health value is encrypted. So there's a real value which is different from the display value you see in the upper left corner. You will need to do a fuzzy search and take damage, then do a "changed" NOT a decrease because when you take damage sometimes it increases and sometimes it decreases. Then perform some other changes without taking any damage and without replenishing your health and then do a "NOT changed". And so on and so forth until you are left with about 10 or 9 values. The one you want is a negative value. You will have 2 or 3. Freeze them one at a time to find out the correct one. Keep in mind that because it's an online/server type game, you may get banned. The mod I mentioned above has some programming embedded into the apk which provides the antiban feature. So hacking it yourself with game guardian is not the same thing. It is a warning. Good luck
  18. Encrypted search: -- encrypted search gg.searchNumber('-10', gg.TYPE_DWORD, true) https://gameguardian.net/help/classgg.html#a14685d871e664a2f8ea74dc3293e428e
  19. Just like we change the address "value" can we also change the address "name" while using the script? gg.clearResults() gg.searchNumber("8243116118139470284", 32) gg.refineNumber("8243116118139470284", 32) local t = gg.getResults(10) for i,v in pairs(t) do t[i].address = t[i].address - 0x30 t[i].flags = 1 t[i].value = 0 t[i].freeze = false gg.setValues(t) end local t = gg.getResults(10) for i,v in pairs(t) do t[i].address = t[i].address + 0x10 t[i].flags = 16 t[i].value = 48 t[i].freeze = true gg.setValues(t) end gg.clearResults()
  20. You look for "addCurrency" and "spendCurrency" using query search, and then find their pointer addresses, after that you pointer search spendCurrency's pointer and this will returns QWORD values, then copy addCurrency's pointer address, after that you replace the QWORD values with the address you copied earlier like this 1234567890h the h represent its as hex so the it'll change the pointer to point the address we replaced which is addCurrency, now you can buy anything freely if you had atleast 50 of any currency, in this case the cheapest thing on the store for xmas is the first Loot box, which is 10 gingerbread or 10 bells, and if you have 15 of one of those, when you buy it'll give you 10 and youll have 25 instead of 5, this is called function replace, and i found this while i testing stuff back then around 764 ish, and no more these specific search and absurd group search that's always gets patched, this method hasnt been patched for nearly 30+ version and still works, while other like survivor base reset, casino caps hack etc etc is patched. I have a script for this game, and its free for most options and i share it on a discord server. if you interested ofc, just lmk on PM, it's also had premium hack in it if you want more stuff, it sometimes doesnt work in certain devices because i dont have every kind of phone to test with
  21. is there emulator emulate ios system can run on android phone or pc windows like vphonegaga emulator but for emulating ios 9 or 10 so we can play apple store games on android phone ?!! since i have found emulator for running old windows games on android this is a sample for it:- this game have a pc and ios version only but it can run on android using android pc emulator .
  22. Hi, idk if anyone still plays this but I have had some successful runs with this game. Most of this is already here but im just compiling and adding to it. 1. Daily Gifts. I'm pretty sure you can just search and edit. Value: Double 2. Golden eggs. You can edit them with a task (the things before trophies i forgot what they're called), random gifts or daily gifts and it might work in co-op rewards. Value: Double 3. Tickets. You can give yourself tickets by going to this website, https://wasmegg.netlify.app/shell-company/ and looking at your spent tickets. Search for the value and change it to a negative. Value: Qword 4. Boosts. Works with all boosts. Just a simple search and edit. I recommend doing golden eggs hack then buying the same number of boosts to edit them all at the same time. Value: Dword 5. Boost Duration. The boost time is in seconds. When you open GameGuardian, the game will pause. Look at the time remaining for the boost and convert it to seconds. Eg, 10mins 30sec >>> 630sec Now select AUTO in scan setting (we do this because we want to scan for a more general value, not exact). Input the time remaining in seconds, and search. Refine the value until you have about 2 Double values. The value will be similar to: 578.0028572 or somthing containing a long string of decimals. This is the exact time in seconds. Now you can increase the value to your liking. Value: AUTO for search. Actual value is Double 6. Chicken count. Pretty easy. Just open GameGuardian (Egg Inc pauses itself by default), look at the chicken value, search for it, and edit it. Value: Qword 7. Artefacts. Pretty easy. Again, just a simple search and edit. I recommend trying golden eggs hack to make crafting a million times easier. Value: Dword 8. Money or Soul eggs. Search and edit. You can't edit direct values. You have to edit tasks, gifts and daily gifts. It's a little like golden eggs. Value: Double 9. Egg value. Search and edit all the values. Works on farm and co-op im pretty sure. Value: Double 10. Stats. Prestiges, drone takedowns. Just a simple search and edit. Value: Qword 11. Boost Tokens. Apparently it's possible to hack it but I dunno how so let me know if anyone has done it. Let me know if I've missed anything ,if it doesn't work for you or if I've written something incorrect.
  23. V.29.5 VIDEO FORM CAN BE FOUND BELOW TUTORIAL IN WRITTEN TEXT FORM : ( READ CAREFULLY ) FIRST MAKE SURE TO SET REGION TO ANONYMOUS NOW YOU WANT TO SEARCH YOUR ENERGY VALUE WITH ENCRYPTED ENABLED AND DWORD YOU WILL NOW CHANGE THE VALUE OF THE ENERGY BY PLAYING THE GAME ONCE YOU GET YOUR NEW VALUE SEARCH IT AGAIN AT THIS POINT YOU WILL STILL HAVE MANY RESULTS TO BREAK IT DOWN YOU WILL SPEND AGAIN ONCE YOU SPEND SEARCH YOUR NEW ENERGY VALUE AGAIN THIS WILL BE YOUR 3RD SEARCH YOU SHOULD STILL HAVE MANY SEARCHED SO SPEND ENERGY AGAIN AND REFINE THE SEARCH NOW YOU SHOULD HAVE A DECEND AMOUNT MAYBE 20-25 RESULTS THIS GAME IS TRICKY WITH THE VALUE IT PLACES EXTRA NUMBER AFTER YOUR ENERGY VALUE FOR EXAMPLE IN THE VIDEO BELOW YOU CAN SEE WHAT I MEAN WHEN YOU FIND THIS VALUE SAVE IT TO YOUR LIST CLICK THE VALUE AND CLICK GO-TO CLICK THE 3 MENU BARS AT THE TOP RIGHT AND FIND(SELECTED AS SEARCH RESULT OPTION ) CLICK YES NOW YOU WILL FIND YOUR GEM BY SEARCHING FOR YOUR CURRENT GEM AMOUNT YOU SHOULD FIND YOUR GEM VALUE AFTER REFINE SEARCH NOW SAVE THIS NEW VALUE AND SAVE AS "GEM VALUE" REPEAT STEP 10 AND 11 ! AND NOW SEARCH FOR YOUR KEYS VALUE YOU SHOULD GET A RESULT FOR YOUR KEY VALUE NOW SAVE THIS VALUE AS "KEYS VALUE" NOW IN YOUR SAVED LIST YOU SHOULD HAVE ALL 3 VALUES IN THE GAME "ENERGY" , ''GEMS" , "KEYS" NOW SELECT ALL AND CLICK THE EDIT BUTTON AND EDIT AT THIS " 999999999;999999999;999999999" AFTER SETTING THIS ALL VALUES WILL BE UNLIMITED ENJOY !! WATCH VIDEO TUTORIAL CLICK ME
  24. @nok1a Hi, thank you for your reply, no matter whether the game APK is downloaded via a browser or directly from the Playstore for my rooted Android 13 phone, the Game Guardian (GG) internal speed hack does not display any green timer, except for the GG ball tester. However, on my rooted Android 11 phone, all different kinds of apps work with the GG internal speed hack, and it shows a full green timer. It is possible that the issue lies with the GG internal speed hack not supporting Android 13 or 12. now In my case, I use VPhoneGaGa/VMOS Pro on my Android 13 device to play games. However, I have noticed some touch latency compared to operating the original phone. VPhoneGaGa on Android 10 has issues with downloading apps via the Play Store, so I have resorted to using the Android 7 version.
  25. View File ReoHecks Libbase Bgmi Script 2.9 @ʀᴇᴏʜᴇᴄᴋs ʟɪʙʙᴀsᴇ sᴄʀɪᴘᴛ ғᴏʀ 2.9 sᴜᴘᴘᴏʀᴛ = ʙɢᴍɪ[32ʙɪᴛ] ғᴇᴀᴛᴜʀᴇs •ɪɴsᴛᴀɴᴛ ʜɪᴛ• •ᴀɪᴍʙᴏᴛ• •ʟᴇss ʀᴇᴄᴏɪʟ• •ɴᴏ ʀᴇᴄᴏɪʟ• •ɪᴘᴀᴅ ᴠɪᴇᴡ•[1-10 ᴄᴜsᴛᴏᴍɪᴢᴀʙʟᴇ] •sᴍᴀʟʟ ᴄʀᴏsʜɪᴇʀ• •xʜɪᴛ ᴇғғᴇᴄᴛ• •ʜᴇᴀᴅsʜᴏᴛ• •ʜɪɢʜ ᴅᴀᴍᴀɢᴇ• •ғɪx ᴘɪɴɢ• •ɴᴏ ɢʀᴀss• •ɴᴏ ғᴏɢ• •ʙʟᴀᴄᴋ ʙᴏᴅʏ• •ʙʟᴀᴄᴋ sᴋʏ• •ʟᴏɴɢ ᴊᴜᴍᴘ• •ɴɪɢʜᴛ ᴍᴏᴅᴇ• •ᴋɴᴏᴄᴋ sᴘᴇᴇᴅ ᴏɴ• •ᴋɴᴏᴄᴋ sᴘᴇᴇᴅ ᴏғғ• •ғʟᴀsʜ ᴏɴ• •ғʟᴀsʜ ᴏғғ• •ғᴀsᴛ sʜᴏᴏᴛ• •ɴᴏ ᴛʀᴇᴇ• •ᴄᴀʀ sᴘᴇᴇᴅ• •ᴄᴀʀ ғʟʏ• •ᴄᴀʀ ғʟʏ ᴏғғ• •ᴍᴀɢɪᴄ ʙᴜʟʟᴇᴛ• sᴇɴᴅ ғᴇᴇᴅʙᴀᴄᴋs ᴛᴏ @Reo_47 Telegram ᴄʜᴀɴɴᴇʟ @ReoHecks Submitter HACK__KILLER Submitted 12/08/2023 Category PUBG  
×
×
  • 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.