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. 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.
  2. 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?
  3. M_JuJu

    LUA scripting

    Looks like I've finally (kind of) figured it out. I think part of what I was doing wrong was not initializing a[2] as a table, and trying to do the math to change the address while defining it. I'm sure there's a far simpler way to achieve what I was trying to do, but having created my first successful GG script I feel pleased ? if gg.isVisible() then gg.setVisible(false) end newgame = gg.alert('Have you restarted the level?', 'Yes', 'No') if newgame == 2 then gg.toast.('Start fresh and try again!' os.exit() end --initial search gg.processPause() gg.searchNumber('0', gg.TYPE_DWORD, false, gg.SIGN_EQUAL) gg.toast('Results: '..gg.getResultCount()) gg.processResume() while gg.getResultCount() > 1 do gg.toast('Cause an accident!') gg.sleep(5000) gg.processPause() acc = gg.alert('Did you crash some vehichles?', 'Yes', 'No') if acc == 2 then gg.searchFuzzy() else gg.searchFuzzy('0', gg.SIGN_FUZZY_LESS) end gg.processResume() end --[[ if gg.getResultCount() <10 then while gg.getResultCount() > 1 do gg.searchNumber('0~-10000', gg.TYPE_DWORD, false, gg.SIGN_EQUAL) end end ]]-- gg.toast('Results narrowed to: '.. gg.getResultCount()) a = gg.getResults(1) a[1].value = '0' a[1].freeze = true cn = a[1].address - 4 rn = a[1].address + 4 c = {} c[1] = {} c[1].flags = gg.TYPE_DWORD c[1].address = cn c[1].value = '85' c[1].freeze = true c[1].freezeType = gg.FREEZE_MAY_INCREASE c[2] = {} c[2].flags = gg.TYPE_DWORD c[2].address = rn c[2].value = '0' c[2].freeze = true c[2].freezeType = gg.FREEZE_NORMAL gg.addListItems(a) gg.addListItems(c) print('Cars: '..c[1].address) print('Traffic: '..c[2].address) --gg.clearResults() One thing I can't figure out is how to filter results by value. I tried searching by number after the fuzzy search, for anything between 0 to -10000(like the searchNumber() examples show for positive numbers) using SIGN_EQUAL or SIGN_GREATER but it kept getting stuck in the while loop with two results, the desired one and one that was always around -1,000,000 which I was hoping to filter out. Thanks again for your help, and all of your dedication to this project, it's greatly appreciated!
  4. BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:1281 ` for i, v in pairs(Il2Cpp.simpleFloatsTable["ARM7"]) do` attempt to index ? (a nil value) with key 'simpleFloatsTable' (global 'Il2Cpp') level = 1, const = 16, proto = 0, upval = 1, vars = 10, code = 43 GETTABLE v4 v4 "simpleFloatsTable" ; PC 4 CODE 02408107 OP 7 A 4 B 4 C 258 Bx 2306 sBx -128765 stack traceback: /storage/emulated/0/-by帅小伙脚本/2022.10.11脚本/-重要/工具/BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:1281 in function 'ggil2cppEdits.getSimpleFloatEdit' /storage/emulated/0/-by帅小伙脚本/2022.10.11脚本/-重要/工具/BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:900 in function 'ggil2cppEdits.createEdit' /storage/emulated/0/-by帅小伙脚本/2022.10.11脚本/-重要/工具/BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:267 in function 'ggil2cppFrontend.PatchesAddress' /storage/emulated/0/-by帅小伙脚本/2022.10.11脚本/-重要/工具/BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:582 in function 'ggil2cppFrontend.methodMenu' /storage/emulated/0/-by帅小伙脚本/2022.10.11脚本/-重要/工具/BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:363 in function 'ggil2cppFrontend.handleClick' /storage/emulated/0/-by帅小伙脚本/2022.10.11脚本/-重要/工具/BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:60 in function 'ggil2cppFrontend.home' /storage/emulated/0/-by帅小伙脚本/2022.10.11脚本/-重要/工具/BadCase's_GGIl2cpp_Toolbox_v1.0.0 (1).lua:1861 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 luaj.LuaClosure.a(src:537) at luaj.LuaClosure.l(src:160) at luaj.LuaClosure.a(src:537) at luaj.LuaClosure.a(src:176) at luaj.LuaClosure.a(src:535) at luaj.LuaClosure.a(src:167) at luaj.LuaClosure.a(src:534) at luaj.LuaClosure.l(src:160) at luaj.LuaClosure.a(src:533) at luaj.LuaClosure.l(src:160) at luaj.LuaClosure.a(src:533) at luaj.LuaClosure.l(src:160) at android.ext.Script.d(src:6056) at android.ext.Script$ScriptThread.run(src:5785)
    DO NOT DOWNLOAD TRASH SCRIPT LEECHER ALL VALUES COPY-PASTED 7uP Network copy of all other scripts Please, if you're gonna do a script, do something new, this has same hacks like every other script gg.setRanges(gg.REGION_BAD) gg.searchNumber("-88.66608428955;26:512", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("26", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(2) gg.editAll("-460", gg.TYPE_FLOAT) gg.clearResults() gg.searchNumber("-88.73961639404;28:512", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(2) gg.editAll("-560", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("9.201618;30.5;25", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("25;30.5", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(10) gg.editAll("99999", gg.TYPE_FLOAT) gg.clearResults() gg.toast("Ultra Headshot 2 Actived!") gg.alert(" Don't use scope when enemies are nearby on you !") For example this is your headshot 2, total copy paste... For real do something original or dont do anything smh getting pissed of all the copy pasters Ohh look here; gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber("1868784978;1850305641;28518", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1868784978", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1000) gg.editAll("1868756421", gg.TYPE_DWORD) gg.clearResults() gg.toast("No Recoil on process..") gg.searchNumber("1750294898;1415932769;1819307365", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1750294898;1415932769;1819307365", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1000) gg.editAll("100000", gg.TYPE_DWORD) gg.clearResults() gg.toast("No Recoil Actived!") gg.clearResults() gg.searchNumber(" 573.70306396484;0.05499718338;1 ", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(5000) gg.editAll("999", gg.TYPE_FLOAT) gg.toast("On process..") gg.clearResults(5000) gg.clearResults() gg.toast("Body White Actived!") gg.clearResults() gg.searchNumber(" 573.70306396484;0.05499718338;1 ", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber(" 1.0 ", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1200) gg.editAll("-999", gg.TYPE_FLOAT) gg.toast("On process..") gg.clearResults(1200) gg.clearResults() gg.toast("Black Body Actived!") guess what, those are copied too smh whole script is copied
  5. 1: /data/data/com.voegyuzcwnxhndki/files 2: 10041 3: [com.voegyuzcwnxhndki] 4: [1028, 1015, 3003] 5: 10041 6: -1 0 7: 22 8: /proc/self/fd/57 -> /data/data/com.voegyuzcwnxhndki/files/377127035.txt '/data/data/com.voegyuzcwnxhndki/files/377127035.txt' N: '/data/data/com.voegyuzcwnxhndki/files/377127035.txt' 9: '/data/dalvik-cache/arm/data@[email protected]@[email protected]' '/data/dalvik-cache/arm/data@[email protected]@[email protected]' '/data/dalvik-cache/arm/data@[email protected]@[email protected]' '/data/app/com.voegyuzcwnxhndki-1/base.apk' '/data/app/com.voegyuzcwnxhndki-1/base.apk' '/data/data/com.voegyuzcwnxhndki/files/377127035.txt' '/data/dalvik-cache/arm/data@[email protected]@[email protected]' '/data/data/com.voegyuzcwnxhndki/files/377127035.txt' 10: false 11: /proc/self/exe -> /system/bin/initlinker32 12: 25447 13: 999 -> Name: oegyuzcwnxhndki Umask: 0000 State: R (running) Tgid: 25447 Ngid: 0 Pid: 25447 PPid: 23025 TracerPid: 0 Uid: 10392 10392 10392 10392 Gid: 10392 10392 10392 10392 FDSize: 128 Groups: 3003 9997 20392 50392 VmPeak: 1349464 kB VmSize: 1329028 kB VmLck: 0 kB VmPin: 0 kB VmHWM: 91524 kB VmRSS: 91524 kB RssAnon: 21896 kB RssFile: 69428 kB RssShmem: 200 kB VmData: 134108 kB VmStk: 8192 kB VmExe: 12 kB VmLib: 82036 kB VmPTE: 544 kB VmPMD: 16 kB VmSwap: 0 kB Threads: 28 SigQ: 3/20989 SigPnd: 0000000000000000 ShdPnd: 0000000000000000 SigBlk: 0000000080009204 SigIgn: 0000000000000001 SigCgt: 0000000e400094f8 CapInh: 0000000000000000 CapPrm: 0000000000000000 CapEff: 0000000000000000 CapBnd: 0000000000000000 CapAmb: 0000000000000000 NoNewPrivs: 1 Seccomp: 2 Speculation_Store_Bypass: unknown Cpus_allowed: ff Cpus_allowed_list: 0-7 Mems_allowed: 1 Mems_allowed_list: 0 voluntary_ctxt_switches: 1063 nonvoluntary_ctxt_switches: 187
  6. DO NOT DOWNLOAD TRASH SCRIPT LEECHER ALL VALUES COPY-PASTED 7uP Network copy of all other scripts Please, if you're gonna do a script, do something new, this has same hacks like every other script gg.setRanges(gg.REGION_BAD) gg.searchNumber("-88.66608428955;26:512", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("26", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(2) gg.editAll("-460", gg.TYPE_FLOAT) gg.clearResults() gg.searchNumber("-88.73961639404;28:512", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(2) gg.editAll("-560", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("9.201618;30.5;25", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("25;30.5", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(10) gg.editAll("99999", gg.TYPE_FLOAT) gg.clearResults() gg.toast("Ultra Headshot 2 Actived!") gg.alert(" Don't use scope when enemies are nearby on you !") For example this is your headshot 2, total copy paste... For real do something original or dont do anything smh getting pissed of all the copy pasters Ohh look here; gg.setRanges(gg.REGION_ANONYMOUS) gg.clearResults() gg.searchNumber("1868784978;1850305641;28518", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1868784978", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1000) gg.editAll("1868756421", gg.TYPE_DWORD) gg.clearResults() gg.toast("No Recoil on process..") gg.searchNumber("1750294898;1415932769;1819307365", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1750294898;1415932769;1819307365", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1000) gg.editAll("100000", gg.TYPE_DWORD) gg.clearResults() gg.toast("No Recoil Actived!") gg.clearResults() gg.searchNumber(" 573.70306396484;0.05499718338;1 ", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(5000) gg.editAll("999", gg.TYPE_FLOAT) gg.toast("On process..") gg.clearResults(5000) gg.clearResults() gg.toast("Body White Actived!") gg.clearResults() gg.searchNumber(" 573.70306396484;0.05499718338;1 ", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber(" 1.0 ", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1200) gg.editAll("-999", gg.TYPE_FLOAT) gg.toast("On process..") gg.clearResults(1200) gg.clearResults() gg.toast("Black Body Actived!") guess what, those are copied too smh whole script is copied
  7. Greetings HACKED MYSELF ON HELP WITH GG! I briefly describe - I go to the match (no difference, with bots or with real players), I played a basketball player. I run GG, the search region is “all seven upper daws”, the format of the value is “all five upper daws”. As soon as we went into the match, we select "search for the unknown" - type "auto" - "in all memory" - search! Go to the generator, pick it up a little, move away from it, the hero will get the first point "XP" (5 or 6 or 7 or even 19, someone like ...), open GG again, he will ask you, " How did the value change? ", choose the" More "button, enter your first point there and press strictly" N = O + D ", the search will go ... You repeat everything until there are from 20 to 10 values (I had about 4-5 attempts to repair the generator with the re-typing of these points). NOW CAREFULLY! Among the remaining values, we look and find (EXACTLY ASK !!!) TWO EQUAL values of the "float" format, they may not coincide with your XP glasses and most importantly - these two values will be the same and very long, for example , number 3,12387563446890 ... !!! Next, highlight these two values, in the column "change" put a tick opposite "add to the value, not replace", then changed the value so, for example, the number 3,12387563446890 ..., replaced with the number 99999999,12387563446890 ... Aluluya ! After changing and re-saving the values, you will immediately see how during a match the player will “drop” over his head with a “billionth” value! Immediately after this, DO NOT DO ANYTHING AND QUICKLY LEAVE THE MATCH !!! FLOWS OF SILVER, A BOTTOM OF POINTS "XP" AND 300 GOLDEN YOU ARE SECURED !!!!! From myself I’ll add that I tried to break open and "gold", I understood exactly what to look for with the tick "value is encrypted" and the type "auto"! After all searches and searches, 20-30 values of different formats will also remain stable. Personally, my opinion, the "gold" is encrypted somewhere in the 5-6 meanings of "XOR", for example, -1 276 345 456! Until the end to understand, I still do not have enough brains ... Who is smarter and more intelligent help? Sorry for my clumsy English!
  8. hi, I know those cheats work, beside the money hack (I didnt get a chance to try it because I encountered this problem) problem : I used to use gamechi2 before game guardian, and I hacked for ammo, granade once.. but then I tried using another game hacking app which is gameguardian, and now I cannot even get a percise adress... I tried search for 30 (my ammo), and then fire some ammo and search again to narrow it down, but then I endded up with 0 result. So does with any other cheat for this game, and then I tried to go back with gamechi 2, but now I cannot hack my ammo with gamechi2 again, gamechi2 does the same with gameguardian, it didnt show me any result when I narrowed it down.... can anyone help me here? why is this happening? """""Problem solved guys... changed search range from default to "more". and I just hacked my health point so I cannot die! HAHAHAHAHA gameguardian is very awesome! For HP cheat : 1. start nova and gameguardian 2. fuzzy 3. go get some enemy to shot you 4. fuzzy smaller 5. hide to recover 6. fuzzy larger 7. keep repeating number 3 to 6 untill you narrowed to about 4 addresses only 8. mine was the one with the value about "17208" (17208 is when mine was full health).....I found 4 addresses... one with very big value ( about a million), there are 2 addresses with value just about hundreds and there is this "17208" 9. save it (give it a name if you like) by tapping it 10. go to save (the one with disket icon) 11. tick the address! but guys, can these cheat be use in multiplayer? I tried but ammo, granade, and HP cheat didnt work....(I cheated from the address I got from campaign mode).... or should I search again but this time from multiplayer mode? Please "like this" if you can use the HP cheat or if my problem solving method helped you also.
  9. Thanks for the help MarioRossi. Your comment was helpful. I still have extra addresses sometimes but the amount is manageable enough now and even if I edit the wrong one by accident, nothing seems to happen now. The extra ones are same values with same differences. I feel like they don't serve any purpose in the game? The recorded script is now runnable now. I can now adjust the game resolution even in dungeons where I don't have access to native game settings which I previously needed to help me find the addresses originally. I don't know how to set a while loop up yet. A loop would be very neat but I have to go to specific menus before adjusting the resolution values and then go back to the game because the game glitches if you change it while gameplay is running. I think this makes running loops unfavourable? I think I'll try more to get rid of extra addresses and change the resolution settings in a one click script too. My script currently just gathers the required addresses(and sometimes a few extra addresses). For anyone who might see this, what I'm currently trying to do is make it convert the 728 value to 1080 and 1620 value to 2400 automatically after finding the addresses but I can't find a way to do this myself manually without selecting the addresses and changing the values myself. So far, what I do is, run the script to find the addresses> select one type of value all myself> convert it to what I want> inverse select to grab the other type of value in one click and change that as well. The script recorder can't seem to record specific selection the way I tried. I'm guessing I'll need to edit the script file manually? I found this post How to loop? to edit and repeat the automatic edit many times? (#5glj94sj) I think what I need is gg.getResults and gg.refineNumber? Can I somehow specify the values gg.getResults will get? Is the last comment there specifying 10 random search values? Could I specify which values to grab?
  10. HP hack: 1. Open GameGuardian, until hovering logo is present 2. Open Exiled Kingdom, wait until you're in main screen 3. Open GG -> Preference (most left tab), Change Freeze interval from 33ms to 1ms, In 'search region' uncheck "Other (slow)", turn AutoPause to 'Yes', & if you have more than 1Gb of RAM you can change the 'Search Data/Value in RAM' to "First 640Mb" or more. This can speeds up the search a bit. 4. Either start new game / open saves -> whichever have the easiest enemy, to make it easier to hack HP. 5. When the game begins, hack money to buy life potion. When you think you have enough potion, then you can start to hack HP. 6. Open GG, and do fuzzy search. (It's the lup logo with question mark on it.) 7. Choose auto -> search -> wait till it done. 8. Find any monster (goblin recommended, cause it have the lowest attack) and DO NOT KILL IT YET. 9. The goblin will attack you in sight. Keep your finger ready to launch GG! Everytime you lose HP, open GG (it will autopause your game, so don't worry about dying) 10. GG will show several chooses. Pick 'changed' -> ok. 11. Remember! Everytime you click 'ok', after the search, the game will automatically start. So, you need to be aware. 12. Keep on repeating this step until your hp bar is half empty. Then kill the goblin -> fill your HP with potion untill full -> open GG choose 'changed' -> find another goblin and repeat from step 9 until you get 4 or 6 fixed address (meaning, it doesn't get any smaller after several search). And those are your codes for hp. Fill your HP to full -> then freeze those code. Voila! Invincible mode.. 13. The codes consist of: (1) Float data (red) with value 0.0 (1) Float data (red) with value 1.0 (1) Byte data (green) value 16,256 and one or more random address. I've tried 2x and the two game worked like a charm. ✌ Goodluck!
  11. i finally find the address of daily quest , and tried change the value to 99999 diamond then ,cant acess the shop surely my acc is banned . ill try again later to find the minimum value if there is in daily quest Like when you change the diamond to smaller value 100-999 i'll try that later . and tips in hacking the tickets draw to avoid banned from net is just go for 100-299 value greater than that i am not sure because i got ban when i draw at 700 tickets or it is not , im not sure though .but to be safe i just gor for less 200 to avoid ban . and hacking character status like attack, speed, deff , this values like the minimum of level is 1 To 355 if level up that value the 3rd number which is the actual attack adress is not easy to find because the value is not equal to what displayed because of bonuses like the actual attack is 195 and bonus from equepment is 2 then that will be 197 so searching that value is uselss . but i have find it by finding the minimum and maximum value of level like level 3 and maximum level is 50 you search for this adress and scroll upward you have to find the value near at thr attack value cause is is just there like value is 200 then you have to find value near 200 just scroll upward in the adresses . i'll upload images later if you want just ask me if you want to know where to look for the adress also hacking status doesnt seem to lead to ban just stick to 999- or 9999 not greater than that to be safe and for items that is 0 i have also find this hard because when i will upgrade my townhall and have 0 item in storage it sucks so what i did is like this . i have item which 10 quantity so I GO TO that adress of that item after that all the adress that is besides that adress i have put it in the search and search for 0 and change all the 0 to 99 and my item change to 99 because all items is located in One place i just have to look in that place and i will find all the items. sorry for my english haha .hope this help for anyone who need this . if you have question feel free to ask .
  12. Play Store Icon Image (upload it to GGImage) Name of Game:Alien Hive Game Version if known:1.1.1 Name of Cheat:Unlimited Energy, Magic Fruit, Blaster Search Regions Needed: All Regions Steps: A. Energy Cheat Launch Game Guardian Run Alien Hive Press the GameGuardian logo at the start of the game Go to settings>set search range>all regions Search for your current energy Go back to the game and use some energy Press GameGuardian and do Fuzzy search>smaller Find your current energy (If you can't find it, repeat step 6-7) Long press it then change to your desired value (4 bytes) Go back to the game and use some energy to see the changes. Enjoy B. Magic Fruit Cheat Launch Game Guardian Run Alien Hive Press the GameGuardian logo at the start of the game Go to settings>set search range>all regions Search for your current Magic Fruits (I prefer that you must have at least 10-15 Magic Fruits for easy searching). Go back to the game and use some Magic Fruits (at least 2) Press GameGuardian and do Fuzzy search>smaller Find your current Magic Fruits (If you can't find it, repeat step 6-7) Long press it then change to your desired value (the hex is 4 bytes). Magic Fruit limit is 30. Changing the value to more than 30 will just return 30. Go back to the game and use some Magic Fruit to see the changes. Enjoy C. Blaster Cheat (same with Magic Fruit) D. Coin Cheat Launch Game Guardian Run Alien Hive Press the GameGuardian logo Go to settings>set search range>all regions Search for your current coins Go back to the game and use some coins (buy powerups before starting the game) Start the game Press GameGuardian and do Fuzzy search>smaller Find your current coins (If you can't find it, repeat step 6-7) Long press it then change to your desired value (4 bytes). Unlimited coins!
  13. View File Hcr2 mod menu(2 scripts) Hcr2 mod menu version 2.2 And Hcr2 1.25 parts hack Password is niepokonany on top MY DISCORD: FREE HACKS Free hacks Free scripts Mod menu.apks Mod.apks No scamming Shops Invite rewards Friendly community And more join now https://discord.gg/HTHFNbtasS For support,hacks, scripts,mod apks,mod menus, giveaways,free accounts and more join now!!! Discord: niepokonany#6666 SUPPORT FOR MORE! MY PAYPAL–[email protected] HACKS: Password is niepokonany on top "Unlock Beta Test Dummy Skin (Need FireFighter Skin)", "Unlock Pit Crew Skin (Need Framer Skin)", "Unlock All Legendary Animation (Open All Common Animation)", "Unlock All Epic Animation (Open All Rare Animation)", "Unlock All Adventure Hat", "Unlock All Vehicle(activate in loading screen)", Rank hack step 1 Rank hack step 2 Season cup points step 1 Season cup points step 2 Autowin Works only on arm 64 (playstore version) Fly hack Works only on arm 64 (playstore version) Moon gravity(ALL VERSIONS) Infinite fuel hack(32BIT ONLY)(ALL VERSIONS) Coins and gems hack(1.40 to new version 1.53) Downoforce hack(ALL VERSIONS) Flat road adventure(32BIT ONLY)(ALL VERSIONS) Flat road cups (32BIT ONLY)(ALL VERSIONS) Fast coins (ALL VERSIONS)(NO BAN) And more but am to lazy to write all hacks now 40+ hacks! Skin hacks 1.25 parts hack 1.25 jump stock op hack Fast coins (ALL VERSIONS)(NO BAN) And more!! Discord: niepokonany#6666 SUPPORT FOR MORE! MY PAYPAL–[email protected] You need 32BIT hcr2 for some hacks Password is niepokonany on top Version for Hcr2 1.25 parts hack: https://drive.google.com/file/d/1ngn5tyqgCEWyDsDvb-Cpw04ovKzL9R51/view?usp=drivesdk 32BIT hcr2 link: Not available now for 1.53.3 64bit Hcr2 link: From play store install to get 64bit Submitter niepokonany_yt Submitted 10/24/2022 Category LUA scripts  
  14. Update: Released Information on how to unlock all 56 cars available in NFS No Limits Hey guys, anyway ignore the first 5 seconds of the video, that was just to play a joke on my subscribers. Anyway this video is a bit long but I didn't want to leave any stone unturned. GameGuardian 8.6.0 or higher required for performing this cheat. I'm playing and cheating on the game using an Emulator called Leapdroid on my computer, anyway here's the details from my YouTube page: Sorry about the beginning, I've been wanting to do this but never got around to doing it lol, hope someone enjoyed it because that took some work to animate my logo to his face XD • Back up your game saves before trying this, if you don't know how, view my tutorial here: https://www.youtube.com/watch?v=SDEtLiIZoxM • Emulator I use to play the game on my computer: http://leapdroid.com • GameGuardian: http://gameguardian.net ------------------- Values from the video: Value Multiplier, Hopefully one of these works for you, it's just the first number that we need and to use to goto the 30D value: Method 1: 128849018948;81604378625:13 Method 2(May return multiple results): 81604378654;81604378625:9 • Thanks to Kek for sharing the original values with me. --Unlock All Cars Now!! 81604378624 = Value 0 for math if you need another number I don't have listed. 81604378630;25D:21 - 6 search 81604378634;25D:21 - 10 search 81604378639;25D:21 - 15 search 81604378644;25D:21 - 20 Search 81604378649;25D:21 - 25 Search 81604378654;25D:21 - 30 Search 81604378659;25D:21 - 35 Search 81604378664;25D:21 - 40 search 81604378674;25D:21 - 50 Search 81604378684;25D:21 - 60 Search 81604378694;25D:21 - 70 Search 85899345820 = -100 For 35 or less BPs 85899345664 = -256 For 40 or more BPs • List of BP Requirement: BMW M3(Vinyl): 6 Dodge Charger R/T: 35 Ford GT: 35 Ford Mustang GT500: 50 Ford Mustang Boss 302: 15 Jaguar F-Type: 25 Lamborghini Diablo SV/Huracan: 35 Mercedes-AMG GT Lunar: 25 Mitsubishi Lancer Evo: 35 Nissan Silvia/180SX: 35 All others can be found normally in the game without cheating.
  15. File Name: Wild Blood (Unlimited Coins/Unlocked) File Submitter: d2dyno File Submitted: 07 Jan 2014 File Category: Android Mods (APKs) How-To Guide For This Mod: Required Android version: 2.3+ More Info: Google Play Overview: Gameloft has harnessed the power of the revolutionary Unreal Engine to bring unimaginable battles in real-time, full 3D graphics. Live the unforgettable journey of Sir Lancelot as you never have before! King Arthur has gone mad, fueled by his jealousy toward Lancelot for romancing his wife, Queen Guinevere. In his desperation, Arthur has been tricked by his sister, the all-powerful sorceress Morgana Le Fey, to open the Hellgate and allow all forms of demons to enter the world. Meanwhile, Morgana has captured Guinevere and holds her hostage on the magical island of Avalon. Now Lancelot needs to confront King Arthur and the evil Morgana in order to free the world from these evil creatures and save Guinevere. The time for Sir Lancelot to face his destiny is now! GET READY FOR A VISUAL REVOLUTION - Amazing real-time, full 3D graphics with special effects powered by Unreal Technology. - Epic fights full of impressive enemies and stunning special powers. LANCELOT’S STORY REIMAGINED - Become the legendary and brutal Sir Lancelot. Fight off the legions of Hell and challenge the mighty King Arthur, who has been enchanted by Morgana. - Travel across 10 breathtaking levels on your journey to Avalon with the help of Sir Gawain of the Knights of the Round Table. DISCOVER A VAST WORLD FULL OF DIVERSE CHALLENGES - Face 20 different enemies including epic bosses. - Wield a wide range of weapons from axes and longbows to your powerful great sword. - Enjoy intense, spectacular and gory combat with both melee and ranged battles. - Explore fascinating environments and solve puzzles to reach hidden locations. ENJOY AN EPIC MULTIPLAYER MODE - Have fun with up to 8 friends in the impressive Team Deathmatch (4 vs. 4) and Capture the Flag modes. - Connect with your Gameloft LIVE! friends and compare your scores on the leaderboard. - Local (Wi-Fi) & online modes available. This game has NO advertisements Credit: Matrix by Neo and Morthis for Proper apk To download obb, follow the How-To Guide For This Mod.
  16. Name of Game:knights and dragons Game Version if known: Name of Cheat:chests, attack, money (haven't found out about gems) Search Regions Needed: 4byte (default is 4byte) Steps:first of all I have to make it clear - my character was banned doing this, so be careful. First open game killer, than open the game. Money: For money search the value that one of your buildings gives, than wait a few second and search for the new value, you should have just one value that you should be able to change, if not, wait a few secs and search for the new value again until you are left with one value. Xp: Go inside one game, kill the mobs inside and the second you take the xp star, go into game killer and make it pause the game. Search for the xp value. Get out and play another game in a different stage that gives you a different kind of xp, search for the new value the second you pick it up Repeat until you are left with one value. Attack dmg: Go in a game than when a mob attacks you, open game killer and search for that number. Attack the mob, go in game killer and search for the new number, you should be left with one value. Change it and make sure you lock it. Be careful because if you miss your hit and the value stays locked, the mob will attack you with the number you locked. Chests: Get about 5 chests keys and search for 5 on game killer when youre on the chest screen. Open one chest Search for the number 4 Open another one and search for 3 You should be left with about 10 values. Change them all to the number of chests you want Arena points: Go into an arena and win a fight You should get about 15 arena points, Search for 15 in game killer Win another battle and search for the value in "xp from last fight" Repeat until left with one value and change it to what ever you want. I haven't found any other ways to cheat in the game but I know it's possible, didn't find a way to change gems and I didn't find a way to change armour level.
  17. An Argument for Hexadecimal Support In Game Guardian Game Guardian currently allows for only integer data types in its searches. If a real or complex data type needs to be found and edited, GG users must first convert these values to their integral, base ten, numeric representations. Not only are these conversions error prone, but they are counterintuitive and enormously large in their integral form. Based on my personal experience, I'd say at least 25% of existing Android games use floating point representation for at least some of their data. I can only assume this is an attempt to discourage the editing of this data by memory editors such as Game Guardian. As an example of the conversion needed to search for a floating point number using GG, consider the following where we want to edit the amount of gold: Gold = 120 120 as a real number, float or double = 120.00 120.00 as a float in HEX = 0x42F00000 0x42F00000 as an integer for GG searches = 1123024896 120.00 as a double in HEX = 0x405E000000000000 0x405E000000000000 as an integer for GG searches = *4638144666238189568 (too large for GG) As GG is currently written, to search for 120 as a floating point, you have to convert it to the unmanageable integer 1123024896 for float or *4638144666238189568 for double (too large for GG)! It would be much simpler to search for 0x42F00000 for float or 0x405E000000000000 for double. To make things even easier, if the number does not contain a decimal component (mantissa, which game storage uses usually don't), the zeros could be omitted altogether. With the zeros left off and a hexadecimal search option implemented, a search for 120 as a real data type would result in: 42F0 (without the 0x clarification prefix) instead of 1123024896 used now for float or 405E (without the 0x clarification prefix) instead of *4638144666238189568 (too large for GG) used now for double There may be legitimate reasons real data type searching was omitted from Game Guardian, but using this method, I've been able to hack a couple games that were basically left unresolved in the Request forums and, I have a feeling many more request could be fulfilled. I think both Game Guardian and its users would benefit greatly if a hexadecimal data type option were added to the app's search feature. Can I get an "ahmen?" *EDITED: Please note, the double data type is too large to enter into GG as a base 10 dedecimal.
  18. Version 2.1.0

    2,280 downloads

    Description: extracts PE-files (.exe, .dll, etc.) from .bin files. For example, memory dumps. For example, from the one that can be obtained through GameGuardian. Use cases: 1. .exe file to be placed in one folder with a .bin file (s) and run. 2. On the .exe file, drag the folder with the .bin file (s). 3. Write in the command line: > get_dll_from_bin.exe path/to/your/.bin/files Result: In the same folder where there were .bin files there will appear .dll files if something was found. Example of output: Usage: drag dir with .bin files to .exe. Tool scan its and extract pe files as .dll files in same folder. Author: Enyby. Used dir: dump dump/com.raongames.growcastle-00008000-0000a000.bin: dump/com.raongames.growcastle-04000000-1c106000.bin: Not valid PE header: 2e746578 dump/com.raongames.growcastle-1c179000-1c17c000.bin: dump/com.raongames.growcastle-94ebb000-95161000.bin: Make 0.dll with size 2737152 dump/com.raongames.growcastle-95169000-951ae000.bin: dump/com.raongames.growcastle-951c6000-95321000.bin: Make 1.dll with size 359424 Make 2.dll with size 878592 dump/com.raongames.growcastle-95325000-95335000.bin: dump/com.raongames.growcastle-9533d000-95583000.bin: Make 3.dll with size 309248 dump/com.raongames.growcastle-95783000-96fe2000.bin: Make 4.dll with size 1684480 dump/com.raongames.growcastle-96fe5000-97371000.bin: dump/com.raongames.growcastle-976f5000-b7756000.bin: dump/com.raongames.growcastle-b7942000-bac40000.bin: Make 5.dll with size 3072 Make 6.dll with size 9728 Make 7.dll with size 171520 Make 8.dll with size 103936 Make 9.dll with size 6656 Make 10.dll with size 10240 Make 11.dll with size 13824 Make 12.dll with size 24576 Make 13.dll with size 65536 Make 14.dll with size 47104 Make 15.dll with size 9216 Make 16.dll with size 41472 Make 17.dll with size 66560 Make 18.dll with size 44032 Make 19.dll with size 18432 Make 20.dll with size 29184 Make 21.dll with size 33280 Make 22.dll with size 175616 dump/com.raongames.growcastle-bf810000-bf831000.bin: Topic: https://gameguardian.net/forum/topic/16999-utility-for-extracting-dll-files-from-various-dumps/
  19. Babica

    Dungeon Hunter 5 mod

    this game take a lot of time..... dont do WP59 yet (in Trial of elements)....when you have global stats in attack and defence (without cheats) around 6000+ you can go to WP45 (there you got 3 start amulet). For solo missions, go to the end if you want, but dont, keep some missions unfinished when you need gems.... gem management here is crucial. collect and evolve items: bracers,shield and belt with dodge stat. Ice Burst you can find in mission (i do not know which one) and at T6 you get dodge. As each item has 3-5 variants, go to collection and see which variant you have. Example is Predatory Instinct nature shield. If you get variant 3 at 3 star, you will get dodge when you evolve it on 4 star. Other variants give you dodge only on T6 (6 star, or max evolve) and it take a lot of grinding to get all materials for T6. in beginning, invest in inventory slots. For 3 time expanding inventory, you will get achievement and it will give you 10 gems i think.... focus on achievements also, there are gem awards... wanted challenges are also great place to collect gems, but rewards are reserved for "credit card warriors" join a guild and participate to get free gear chest. soon, Christmas event will start, so keep some gems for event to buy energy refill, you will need it..... here is a tip: if you are low level and you have 35 gems, unlock daily dungeon "quartz gathering" and with cheats finish legendary difficulty. The amount of exp is huge and you will level up, as you level up, you get energy and amount of energy you get is greater of cost of dungeon. So using this, you can level up very fast and till lvl 60 you will have more then 1500 energy....profit!!!! and with this amount energy you can go WP or missions..... when you unlock this daily dungeon, it will be open for 1 hour. So to speed thing up, play regular mission, collect some rush tickets, and spend rush ticket on daily dungeon. Next weekend all daily dungeons will be open. _______________________________________________ added 3 minutes later please, read full thread. i've attached which armor you need to start (you can find it on mission 2). Replay until you get armor with dual-blades property. Then follow all steps in this thread.
  20. [ @_yourram ] --- if trex == nil then alert('It has to be at least 1 millisecond') return end You put 'return' here, it is wrong. 'return' statement is used to exit a function: LUA 4.4: break and return. If you want to trigger gg.prompt again, then use goto statement: ::redo:: trex = gg.prompt({'For how many milliseconds do you want to spawn trex? (1000 = 1 sec)'}, {[1]='0'}, {[1]='number'}) if trex == nil then alert('It has to be at least 1 millisecond') goto redo end --- r = { [1] = { address = v.address-offset[1], flags = 1, value = 0, name = 'Instant respawn'..i..',1' }, [2] = { address = v.address+offset[2], flags = 16, value = 0, freeze = true, name = 'Trex spawn'..i..',2' }, -- for how many milliseconds do you want to spawn trex? gg.sleep(trex[1]) [3] = { address = v.address+offset[3], flags = 16, value = 190, freeze = true, name = 'Trex spawn'..i..',2' }, You're executing a gg.sleep() function inside a table, this is wrong. You can't execute a function inside a table. What you need is to separate 'instant respawn' and 'trex spawn'. local gg = gg local s = 1136216893891 local offset = { 0x1C, 0x1C, 0x1C} local r = {} gg.searchNumber(s,32) if gg.getResultCount() == 0 then print('No results found.') os.exit() end local t = gg.getResults(10) gg.clearResults() ::redo:: trex = gg.prompt({'For how many milliseconds do you want to spawn trex? (1000 = 1 sec)'}, {[1]='0'}, {[1]='number'}) if trex == nil then alert('It has to be at least 1 millisecond') goto redo end --Applying instant respawn for i, v in ipairs(t) do r = {{ address = v.address-offset[1], flags = 1, value = 0, name = 'Instant respawn'..i..',1' }} gg.setValues(r) gg.addListItems(r) end while true do for i, v in ipairs(t) do r = {{ address = v.address+offset[2], flags = 16, value = 0, freeze = true, name = 'Trex spawn'..i..',2' }, { address = v.address+offset[3], flags = 16, value = 190, freeze = true, name = 'Trex spawn'..i..',2' }} gg.setValues(r) end gg.sleep(trex[1]) end --- *Do note that: the script above runs infinitely, you need to put some condition in order to exit it.
  21. Lenn1

    How to Find new offsets?

    function KX1() gg.setRanges(16384) --it is the same as gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("\000300", 16, false, 536870912, 0, -5) --is a search for 300(300.0 or 300,0) float value gg.getResults(4) gg.editAll("100", 16) --modifying this value, the perspective sensitivity of the crosshair increases gg.clearResults() -- --here will be a AoB search in HEX gg.setRanges(gg.REGION_CODE_APP) name("libil2cpp.so") myoffset = 12395128 -- offset old(for me is 0x00000001) why? dont know! original("7F 45 4C 46 01 01 01 00") -- HEX to STRINGS= ELF replaced("10 00 A0 E3 1E FF 2F E1")--HEX to STRINGS= ãÿ/á gg.clearResults() example to do an Array of byte search: gg.searchNumber("h7F454C4601010100", gg.TYPE_BYTE, false, gg.SIGN_EQUAL, 0xd3077000, 0xd6bbdfff, 0) local t = gg.getResults(1000) gg.addListItems(t) t = nil gg.saveList("/storage/emulated/0/Notes/com.dts.freefireth.AoB", 0) --where find offset revert = gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("h1000A0E31EFF2FE1", gg.TYPE_BYTE)gg.clearResults() -- gg.setRanges(gg.REGION_C_DATA) gg.searchNumber("0.01;0.01;0.01;0.01;1.41191865e34::17", gg.TYPE_FLOAT) gg.getResults(4) gg.editAll("0", gg.TYPE_FLOAT) gg.clearResults() -- gg.setRanges(32) -- is gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("5.5;1.0;0.75::9", 16) -- in class game var default,these values are to multiply damage to the head, chest, and limbs (legs and arms) respectively --ONLY VISUAL! gg.refineNumber("1", 16) gg.getResults(1) gg.editAll("-999", 16) --modifying this the damages in "chest" are not shown gg.clearResults() gg.setRanges(32) gg.searchNumber("5.5;0.75::9", 16) gg.refineNumber("0.75", 16) gg.getResults(1) gg.editAll("-999", 16) --modifying this the damages in "limbs" are not shown gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("1016018816", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -5) --is pure no recoil/spread,you have to have the weapon equipped first, then search and edit the values gg.getResults(500) gg.editAll("0016018816", gg.TYPE_DWORD) --modifying this all shots do not spread gg.clearResults() gg.toast('Head****') -- XD os.remove(gg.EXT_STORAGE .. "/Android/data/com.dts.freefireth/files/reportnew.db", gg.LOAD_APPEND) --this is bull****, it would never have an effect "no ban" (anti-ban) XD os.remove(gg.EXT_STORAGE .. "/Android/data/com.dts.freefireth/files/ymrtc_log.txt", gg.LOAD_APPEND) --this is bull****, it would never have an effect "no ban" (anti-ban) XD os.remove(gg.EXT_STORAGE .. "/Android/data/com.dts.freefireth/files/ymrtc_log_bak.txt", gg.LOAD_APPEND) --this is bull****, it would never have an effect "no ban" (anti-ban) XD end
  22. Well guys, the method is a bit of time consuming, First you play a level and head to your Season Pass screen and do a Fuzzy search, then play and complete another level and head to your Season pass screen and press the increased button (since your value was increased because you got some reward points for that level), there will be 100,000 results or even more than that, to narrow down the results you can play a level and press increased button and after that the unchanged button (by 1) which will reduce the results to 8000 or so, to narrow even more results, go to a level and close the level without playing it and head to your season pass screen and press the unchanged button which will narrow your result to 500 or so, do this (continuously) and finally you will end with 8 to 10 results (if done properly). Take a screenshot of your results and then play a level and note the reward points above the moves of that level before completing it (if it is an easy level then the reward points will be 3 or if hard level then reward points will be 6 etc.). After completing this level head to your reward point screen and check your results in GG and compare them with the screenshot you clicked, let's say that you won 3 points from that level, compare which value has added 3 points to itself (other will add only 1 but there will be a value which will have added 3). So if that value was 100 and after you played that level and got 3 points that value would have increased to 103, change it to 605 and open your season pass screen and see what has happened. You can also change the value to 0 and your season reward screen will take you back to the 1st reward. In short, you have hacked the season pass reward bar. And messing with this value you will come to know that if you change it to different numbers, it will open up different rewards for you. Once you have successfully hacked the reward bar, before closing the game note down your current value and reward bar number and tier number, so that, you may next time find your value easily without doing all this fuzzy search thing. Same method will work on Homescapes and I will post it later on my topic.
  23. This is exactly what we really need. We have the most powerful hacking app on the android market and a insane talented programmer enyby who spent a big part of his lifetime into this project. I know a lot good coders, hackers and skilled modders but there are only a few where i can say "this guy life for high quality work" no bad code, no copy paste stuff....nerver "half work jobs" Without enyby we would have a standard memory editor without a big difference to other tools. As i moved from pc hacking scene to android few years ago i used other tools because of "easy to use" but after i have seen that gameguardian became more and more features, more stable and more, most support for different devices, emulators etc. And last but not least a never ending development, so i went complete to this insane application. "Play games your way" (i love this sentence since more than 10 years) is unthinkable without gameguardian. But the problem is the power of this tool. Im a pro cheater but we have so much features that i can only use a small part of them. I have not the experience to use them all because i never learned to code. And 90% of our members have the same problem. We want to hack, we have biggest tool ever, but nobody know how to use. Its like we have a very big p*e*n*i*s and want to fu*ck a girl but we can only do it a little bit because we dont know how to use it rightly ???? And thats why i give you and guys like @NoFear a very big thank for the time you spent to make guides for us "noobs" I know that's a unthankable job but you can be sure there are a lot cheaters like me what see the work behind that and im more than thankful because you help a lot with that guides. Your are absolutely welcome here. Please dont care about "isnt easy to find" we give you full support on our forum and we handle that. Maybe with a gameguardian wiki what will be more clear. Thank you sir's!!!
  24. How to shoot yourself in the leg This list is not exhaustive. When fantasy stock almost anything can cause a shot in the leg. Here they are listed only the most common methods. 1. Turn on speedhack with 1,000,000 or higher speed, and then complain about game data is damaged. 2. Make time jump for a few months or years in advance, and then complain about game data is damaged. 3. Change the values of several thousand in memory of the game, and then complain about game data is damaged. 4. Install the new version of GG, make horrible changes it in the settings, and then complain that the new version is not worked like the old, in which the default settings. 5. Select the settings English, use "," as the decimal separator, and then complain that it not used. 6. Use hide from the application, and freezing the values at the same time, and then complain that the game slows down. 7. Change the value in an online game like Clash of Clans, and then complain that the hack does not work. 8. Enter in the search for negative values, and then complain that finds the positive values (old version). 9. Enter in the search for positive values, and then complain that is a negative value (the new version). 10. Enable the auto pause in GG, and then complain that the system reports that the game does not respond. 11. Try to use speedhack in the game without x86 libraries on emulators, and then complain about speedhack not work. 12. Set count of output values of the first results near a million, and then complain that the GG force closes. 13. Watch the video with another application (GameHacker, iGG and so on.), press similar buttons in the GG, and then complain that the hack does not work. 14. Open the memory editor to see there another output format, and then complain that there is not so in the video / manual. 15. Fill in all the fields, that is, at least something, and then complain that the hack does not work. 16. In the temporary path enter numbers for search, and then complain that not work. 17. When we rename any label, or make any changes, then complain about the fact that it worked before, but now everything is broken. 18. Use the memory regions that are marked as dangerous, changing them in random data, and then complain that the game has crashed. 19. Freeze value, try to edit it, and then complain that the value does not change. 20. Trying to enter the type of data more than it can be in this type, and then complain that generates an error. 21. Try to perform the group search, using as separator ",".
×
×
  • 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.