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. The reply I just submitted disappeared. I don't know what happened. Yes, but converting byte array into string is a very common function. GG already has the method of "gg.bytes" to convert string into byte array, so it is common to add a function with the opposite process. These two APIs are brothers. Yes, there is such a process in my Lua script implementation. But I don't think it's necessary to separate this process. In most cases, we need a final string. If there are special circumstances, you can use GG Bytes gets the byte array. Thanks. @Enyby The script uses a 64 bit value, while the pointer value of a 32-bit process is 32 bits, which is the cause of the problem. There are no errors and unreasonable places, but some checks may be performed when obtaining memory data. The reason is that I need to judge the address a lot in the script to ensure that there is no negative value. This makes me wonder who is reasonable to deal with this kind of thing? In a 32-bit process, the script requests to access an address value that is obviously out of bounds. The script does not check this, GG does not process it, and the operating system does nothing. Is it unreasonable that GG allows scripts to access a very large address value? (this address will never have data). BadCase said: I can understand that. However, Lua script should be responsible for the code of our business logic, rather than some too basic functions and some code irrelevant to business logic. I think this kind of code is meaningless and redundant. Some functions should become the basic API of GG, and some checksum conversion processes should be built in by GG. So I hope that the address value can be corrected automatically in "gg.setvalues(), gg. getvalues(), gg.loadresults()". There is also a memory viewing panel, and entering - 10 (0xfffffffffffffffff0) can jump to 0xfffffff0. You can do this only when a 32-bit process is running. We can discuss this problem again, because I think the current design is unreasonable, but I can't give a very reasonable solution. A few digressions: Does GG have an update plan? Will the plan under development by GG be released? Where can I see it?
  2. its 37. just equip, search and refine the Bow. Training Bow = 0 Boa Constrictor = 3 Forest Cabin = 10 Poisonous Spider = 21 others equipment values are in the address.
  3. I have three optimizations about GG. 1. Add an API for converting byte array to string, such as gg.bytesToString({0,104,0,105}, "utf-16"); , returns the string "Hi", similar to Java: return new String ({0,104,0,105}, "utf-16"); 2. When the address is negative number, it can automatically become positive number. When you enter -10 in the memory editing panel, the address will jump to 0xfffffffffffffff0. I hope to jump to 0xfffffff0. 3. Add API for file operating system to allow scripts to create folders. Why do I need "bytesToString"? I wrote a script for the game "WorldBox". Through the script, I can modify the equipment, talents and other attributes of the characters in the game. I pop up a menu to let users choose the characters to modify, so I read the character name from the memory. I use pure Lua implementation code, but the efficiency is very low. It will take a few seconds to read more text. I know this is very simple in Java, so I hope to add this function in the next version of GG. Why do I want to automatically convert the address value of a negative number to a positive number? I often encounter this situation: the value of the address 0x10001000 is 0x90001000. I want to get the value on the address 0x90001000. Code: local value = gg.getValues({{address = 0x10001000, flags = gg.TYPE_DWORD}})[1].value; Now: value = -1879044096, the hexadecimal form is 0xffffffff90001000. But I need 0x90001000 instead of 0xffffffff90001000. If I directly make address = 0xffffffff90001000, I will not get the value. My solution is to value << 32 >> 32, but I hope GG can avoid this problem in its design. My reason is, when the memory address is a negative number, the memory editor will turn it into a huge positive number. This is an astronomical number. Maybe the computer won't have such a large memory in 100 years. In terms of design, this is not in line with people's intuition. Why do I need APIs related to file system operations? Due to GG's security policy, "gg.execute" is disabled, which makes it impossible for me to create folders. When I replace the game archive, I need to create a new folder. This function is very important. I still have many designs that cannot be realized because of the lack of this function. Since this function may conflict with the security policy, I think it is necessary for me to talk about my views on the security policy. It's easy for scripts to do bad things. The person executing the script needs to evaluate the security himself. For malicious applications, it has no root permission, and only some ordinary permissions, such as accessing files, can still cause great damage. A script can access and modify memory, but cannot create folders. This script cannot do what an Android application can do. Of course, security measures also make sense. So I hope to allow the script to apply for the permission of a folder like the prompt when accessing the network. After the script has the permission of a folder, it can create a folder under this file path, traverse subdirectories and so on. Finally, because my mother tongue is not English, I will miss a lot of information on the website when I don't actively translate, and I may make mistakes, also pardon me. @Enyby
  4. Been a long time so I couldn't remember but I downloaded again and this is how I found it this time. First I searched 30000 dword which is the price of other boxes and increment edit them. Note the addresses of the ones that change. Then I searched 200, the price of the diamond box. Then I refined using an address search. For me I found the addresses of the four other boxes that changed the first three digits of the addresses were the same. My addresses are 10 digits so I would search *****???????. That left me with about 400 results compared to 8000 and then I increment edit those to find the exact value. Them change to 0. Incidentally, if you are rooted you can just use Lucky Patcher for free IAP's in this game.
  5. 1.27.3 is not current version. Script freezes game. 1.27.2 is correct. Thanks mate!
  6. This is very smart, i was never thinking about using JTR, i used a solo Luminara with boosted hp. But my idea for this thread came from the fact that there is no real check by the server that for example how you dodged 10 times in a match. So there must be a way to search for the value of the feat and complete it through GG.
  7. talkIRC

    Android 12?

    are you rooted? if so, scrap the VM's and set to 'SElinux' in the 'fix it' section once everything is properly installed natively in the device. if your not rooted: i can't really help, i'd not own a device i couldn't root (even my old lollipop LG VK815 is rooted and that was a pain in the a** to do way back when). IN THE EVENT that you set it to work with SElinux (in a fully rooted device running android 10, 11, and/or 12) and still encounter crashes or problems, please be sure to upload the logcat file, crash log, and any helpful details of exactly what you where doing at the point of the crash, as the users that will tackle the problem will also try to reproduce the same error if possible on similar hardware should it be available to them.
  8. Hello. I have used your script before (genshin impact script 1.0) and it's working. Then I want to run your latest script like in your youtube video (kill all), and it doesn't work, hope you can help me in this forum. I am using android 10 with Snapdragon 845 chipset. I'm sorry for all repetitive comments and maybe moderators think I was spamming. But actually, I have never in forum before so I have no idea how to respond.
  9. HirumiM

    Genshin Impact

    Hello. I am Hirumi Mora from Youtube. I have used your script before (genshin impact script 1.0) and it's working. Then I want to run your latest script like in your youtube video (kill all), and it doesn't work, hope you can help me in this forum. I am using android 10 with Snapdragon 845 chipset.
    it keeps saying "failed to load daemon" and it doesnt even give me the option to choose no root or root or default my phone is andorid 10
  10. View File Vlogger Go Viral: Tuber Life | Script Hello to everyone, Ive came back and decided to make more scripts. Script Info -Infinite Gems Cheers,Masterking2079 Submitter Masterking2079 Submitted 01/10/2022 Category LUA scripts  
  11. Idk where to ask, but that is what i would like to have added, this would be great for faster value searching like in cpp mod menus, for an example i search 2 Float and then an offset of 4 values underneeth it is an aim assist value of 15 Float, Now game guardian is checking 4 values underneeth the 2 Float if the value is 15, it is gonna edit this value. This is faster then group search (2F;15F:50), i came to this idea because i saw this is how the cpp mod menus value editing works on an youtube video At Time 10:30
  12. View File (Old and broken) Simcity BuildIt Simcity BuildIt Script A Simcity BuildIt script by Zulfilham UNSAFE Features: Alter Production Times (Instant Production) Explanation: Production in the Factory and in the Shops are finished instantly. (Some people are facing a glitch where you have to get out of the production menu to collect the items.) Compability: Game Version: 1.40.1.102423 Optimized for: 32 and 64 bit systems For Android: 8, 9, 10, 12, and up... Also work on BlueStacks 4 (Android 7.1 64 bit) Bluestacks 5 not tested. (may work there too) Credits to Datu Kopi and Zulfilham I will keep this script updated here. I have contact to Datu Kopi and Zulfilham. Submitter User600900 Submitted 12/28/2021 Category LUA scripts  
  13. View File (Old/Broken)Simcity BuildIt Simcity BuildIt Script A Simcity BuildIt script by Zulfilham UNSAFE Features: Exclude War Items Explanation: You do not need war items to start attacks on players and monsters. Compability: Game Version: 1.40.1.102423 Optimized for: 32 and 64 bit systems For Android: 8, 9, 10, 12, and up... Also work on BlueStacks 4 (Android 7.1 64 bit) Bluestacks 5 not tested. (may work there too) Credits to Datu Kopi and Zulfilham I will keep this script updated here I have contact to Datu Kopi and Zulfilham. Submitter User600900 Submitted 12/28/2021 Category LUA scripts  
  14. no process selection wasn't the last thing (after reviewing my original post, a step was indeed missing) in the steps i took, i could choose the process, but you can't search a value (crashes when you try), you can't load speedhack (when you try it crashes), if you go to the addresses tab of GG as soon as you do it crashes. I will include logcat files for each of these processes, while i might have had the process selected for 2 minutes and 17 seconds, i'd not searched for a value yet, i select the process to hack as soon as the game starts loading which takes a little time, then to navigate to where i need to be in the game to search for a value takes time as well, so how long GG is running (without doing anything with the RAM of the game via GG it runs like any app would, it's when you try to use GG to do anything with the app you want to hack that it fails.) going to take time to type all these out as i do them, so the time stamps are a little pointless, i'll just give the time each starts 11:40am (time on tablet, so stamp in file should be the same) started gg started game long pressed GG icon to enable speed hack choose game's process screen freeze for aprox 10 seconds and hard reboot at 11:44am (time on my pc, can't read the clock if the tablet is restarting, lolx) first logcat file (takes me a few minutes between each run to save the logcat file and zip it up on my pc to post here) 11:50 started GG started game choose process try to search for dword value of 1 screen freeze for aprox 10 seconds and hard reboot 11:52am (again time on pc because tablet it restarting) second method logcat file (each time i'm making sure to delete the previous logcat file to ensure totally new files each time) 11:56am start gg start game select process choose addresses tab attempt to scroll screen freeze and hard reboot 11:58am (again time on the pc; tablet rebooting) third logcat test these where all done with SOFTWARE GG; if you like i can go through the same process in hw gg but the results always end the same with a hard reboot. if there is anymore i can do, let me know! hope all this helps first logcat file-GG_logcat_r101.1_16142_11_30.7z second method logcat file-GG_logcat_r101.1_16142_11_30.7z third logcat test-GG_logcat_r101.1_16142_11_30.7z
  15. I haven't found any records that would help with understanding the problem (what and why happens) in the log, so there may be 2 main possibilities: either they are present in the log but haven't been noticed or recognized as being related to the problem or log doesn't contain them. However, it seems worth to note that around 2 minutes and 17 seconds have passed between the moment when process has been selected in GG: 12-22 13:05:18.975 14480 14480 E AndroidService: used: ProcessInfo [cmdline=com.fungames.sniper3d, name=Sniper 3D, packageName=com.fungames.sniper3d, icon=android.graphics.drawable.BitmapDrawable@8ef34cd, pid=10179, uid=10275, isSystem=false, isGame=true, weight=0, main=true, order=0, x64=false, rss=359392, getTracer()=0, getTrace()=-1] and the last record in the log: 12-22 13:07:35.649 20370 20370 I SoundAlivePolicyManager: isGlobalEffectSupportCurrentAudioPath, currentDeviceType : 2 This doesn't quite correspond to your description of steps that you do to reproduce the problem. Was process selection really the last action that you performed in GG that caused device to become unresponsive and to reboot after ~10 seconds? One thing that would greatly help with analyzing recorded logcat is to specify when certain actions have been performed. For example: 11:04:32 - "Start" button in GG's start screen was pressed 11:04:38 - Process selection dialog was opened 11:04:41 - Target process was selected 11:04:55 - Device automatically initiated it's restart Time moments don't have to be exact, since it's not easy to precisely check when something is done, but even if it's +- 5 seconds, that's still significantly better than having no such information at all. For example, to illustrate, the log you provided is ~27 MB, but only ~2 MB from it is most likely to contain any information of interest, since other records are from before the moment of time when you initiated recording logcat in GG. And with information about when actions relevant to the problem have been performed, only, for example, ~200 kB of log records are most likely to contain any information of interest.
  16. Greetings Everyone. I am new to this game and I have no prior knowledge about how to use Game Guardian. I followed Kaizen's guide on YouTube to hack coins and gems but I am unable to hack notebooks . I have just obtained a niffler and i have 10 red notebooks . Can someone help in pointing out which guide should I follow and when is the right time to hack notebooks ?
  17. Process name and app icon both missing. Android 11. GG 101.1. Infinix Note 10
  18. been doing a little reading up on android 11, turns out it's possible the 'new' hardened memory controller is why anytime you do anything to actively view the ram addresses (even on the address tab of GG) the device locks up and restarts; as that controller is seeing GG view the RAM and is crashing the device for a reason i don't know or understand.... incase the dev's (or dev if it's just one person) are reading this (which given the number of posts related to android 10 and 11 {and i'm sure 12 too if i owned a new model pixel}) leads me to wonder if it's a problem they can beat or if the ability to control our single player game destiny has been lost with the most recent android updates. i know things don't happen over night in the programing world, but a 'we're working on the problem' update is better then not knowing anything given that this post alone contains statements from many users suffering the same problems on similar hardwares running the same version(s) of android.... but i digress, i'll just hope they're working on it quietly and don't want to get anyone's hopes up should they fail to conquer this 'new hardened memory controller' that was introduced in 10 (limited if i read the google security release updates correctly) and fully in android 11. here's to hope.
  19. still ending up with the same results, it still crashes within seconds of trying to search a value or enable speed hack (as both actively start to scan or change the ram values) feels like GG is having some major issues with android 11, it was released September 8, 2020, so it's a year old and android 12 is already on it's roll out. samsung is a major brand, so it's not like i'm using some obscure no name hardware and a unofficial version of android (other then rooting, that imho isn't unofficial, it's power user friendly android that shouldn't be a pain in the a$$ to install, thanks google.) always willing to try anything that keeps it native, after 7 or 8 years using GG i'd hate to think it's not being developed anymore and the dread i feel at the thought of having to try to find another software that will do as good makes me consider abandoning android gaming and just sticking with the PC (still using game hacking software from 20+ years ago natively in windows 10, because unlike GG in android, it takes more then one hacking software on PC in some games cases).
  20. saw this same thing on my samsung galaxy tab s7+ (sm-t970), it's EXACTLY the warning you get in android 11, and GG fails to do anything useful. (let me clarify below) after fully installing GG (and yes, letting GG installing random 'XYZVBQ' like always to hide from anti-cheat softwares) (xyzvbq is not the exact thing, just random letters i used for the example) open GG (either mode, sw or hw same results either way in the end) 'start it' in the GG main window open game you want to hack tap GG floating above the app to select what process i want to 'inspect' result is hard lock on screen for about 10 seconds or so and then a total system restart (total reboot of the tablet) .... in reference to the provided picture Akbhai123456: GG v101.1 is telling you flat out that it was made for OLDER versions of ANDROID and may not work with ANDROID 11 (red velvet cake); my wonder is what do i do until i can play my games with my beloved GG? if there's a guide or a fix i've not found it yet, or should i wait till GG v101.2 to enjoy good ol GG bliss?
  21. Hi JSKA, VERSION 1.27.0 is out now. Thanks mate! Love your scripts
  22. Android id on Android 10+ can not be accessed by 3rd party apps, if you really need that you will need some java/smali knowledge to add that function in **. you know what i mean
  23. You can search: your coins;your director points::10 Should give two results and change both to what you want. Save & reboot to show change.
×
×
  • 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.