Leaderboard
Popular Content
Showing content with the highest reputation on 09/01/2017 in all areas
-
2 points
-
2 points
-
see or download all video (look for @Krakken's video he made easier for nooby from @NoFear's video ( if u have difficulty with speed cause i don't )) they can just provide the food or menu of food , you have to choose and eat your self ? _______________________________________________ added 0 minutes later look for facebook page of game dev2 points
-
Name of Game: last day on earth survival Summary of this topic by @NickTSPre: https://gameguardian.net/forum/topic/17283-last-day-on-earth-survival/?do=findComment&comment=641931 point
-
1 point
-
1 point
-
How to determine why speedhack does not work Problems can be of different nature: 1 Speedhack destroys the game. It may look like friezes, hangs, some problems in the game. 1.1 The problems should be observed at speedhack and absent without it. If not, then it is a problem of the game, not speedhack. 1.2 The problems may be caused by the change of speed, or the fact speedhack connecting. 1.2.1 If the problem is caused by enable speedhack, then the simple inclusion speedhack to change the speed, they should appear. In this case, you turn off all timers in "Intercept timers". Then you turn on any one, restart the game, activate speedhack. If all is well, you turn off the timer and go to the next. So you make a list of problem timers interception. 1.2.1.1 If everything works without them, then the problem is solved - Use these settings 1.2.1.2 If, however, without them does not work, then you need to make an error report. Include all problematic timers in the interception, include logcat record, restart the game, activate speedhack, reproduce problems, stop recording logcat, send me a log on the forum in the archive, with explanations. How to collect logcat see link: https://gameguardian.net/forum/topic/7419-how-to-collect-logcat/ 1.2.2 If the problem is caused by a change in speed and no problems when connecting, then you go to "list of timers" and remove the check mark from all timers. Then, put a check mark on one green timer. Check the problem in the game. If there is no problem - uncheck and selects the next green timer. If a problem occurs - memorize this timer, disable it, and restart the game. After checking all the timers you will have a list of problem timers. 1.2.2.1 If everything works without them, then the problem is solved - Use these settings 1.2.2.2 If, however, without them does not work, then you need to make an error report. Activate all the problem timers, restart the game, turn the record logcat, connect speedhack, reproduce the problem, stop the logcat recording, log send me to the forum in the archive with the notes. How to collect logcat see link: https://gameguardian.net/forum/topic/7419-how-to-collect-logcat/ 2 The game does not change your speed through speedhack. 2.1 Check that the interception includes all timers. If not all - try to select all. 2.2 Check that all green timers selected in the timer list. If not all - try to select all. 2.3 Check speedhack can work for this app: If your device is x86 or PC emulator - app must have x86 libs. If they only have arm libs - then speedhack can not work. If app can not have binary libs - speedhack can not work. If you have android 5 and above - speedhack can not work for Java timers. If app use x64 libs - speedhack can not work. 2.4 If, however, speedhack should work, but does not work - make an error report. Restart game, turn the record logcat, connect speedhack, reproduce the problem, stop the logcat recording, log send me to the forum in the archive with the notes. How to collect logcat see link: https://gameguardian.net/forum/topic/7419-how-to-collect-logcat/1 point
-
Gold Hack , doesn't seem to work for me , after I apply the pointer method, and as I touch the gasoline to purchase it the game crashes. BTW , thanks to @NoFear , @Krakken for giving the awesome hacks and detailed explanation by @Krakken ,I stocked up 800+ items in my inbox , made all the crates and food up to 500 million.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Game Guardian fuzzy search and dealing with encryption by Gamecheetah.org · Published May 31, 2017 · Updated May 31, 2017 Assuming that you learned lessons from previous Game Guardian tutorials [Game Guardian beginner tutorial] and [Game Guardian group search tutorial], today we will continue with our Game Guardian tutorial series. From this article, you will learn basics of Game Guardian fuzzy search. Article will have two main parts – using Game Guardian fuzzy search for finding unknown, unencrypted values, and using fuzzy search for dealing with encrypted values. But, what is Game Guardian fuzzy search? It is type of scan where the starting value is unknown – maybe wanted value isn’t visible, or the value is encrypted. The best example of unknown value is health bar in games – value is usually unencrypted, but instead of number, you only see red bar. We know that there is some number behind red bar. So let’s see how to change unknown value. Game Guardian fuzzy search This type of scan is fairly easy if you know the basics. Open Game Guardian dashboard, select process from the wanted game, and click on Unknown (fuzzy) search. When you click on it, it will map all in-game values. Now, go back to game, and loose some health. Open Game Guardian, and click on Decreased button. It will go through all values again, filtering the ones that have decreased. Go back to game, and loose some more. Again, open GG and click on Decreased. Game Guardian have one unique feature that isn’t presented in other software of this kind. It can search for unchanged value multiple time. Don’t loose or gain health in game. Open Game Guardian, and choose Unchanged. It will ask you how many scans you want to run. Choose 4-5 times, it will be enough.NOTE! Do not run this right after the first step. Sometimes there will be hundreds of million addresses in the list, and if you run 15 or so Unchanged values scan, it will take forever to finish! If there is many addresses left, gain or loose some health, and do increased or decreased search. When only one or two addresses are left in the list, change them, or better, just freeze them. If you freeze the value, you won’t loose health anymore. Using fuzzy search for encrypted values The main difference between upper example and this one is that we don’t know if the value is increased or decreased. Because developers maybe implemented some shady algorithm to hide the real numbers from the players. Most trivial example is multiplying value with some number. If you have 100 diamonds, it can be stored in memory as Value*8., or 800. If you earn 20 diamonds, new memory value will be 960. Fairly easy, right? You can still use increased or decreased to find the right value and edit it. But look at the following example. If some evil developer choose to store 100 diamonds as Value*(-8), then in-game value will be -800. If you earn 20 more, it will be stored as -960. So, if you gain diamonds, in-memory value will decrease, and if you spend some, in-memory value will increase. So we can’t use fuzzy search the same way as we did in the previous example. All we can do is make first Unknown (fuzzy) search, and find changed/unchanged values. –Side note– Of course, there is much better option for dealing with encrypted values in Game Guardian. On Known (exact) search, there is encryption box that can be checked. This is much faster method which you can try first. If it doesn’t work, you can try fuzzy search. You can find example for searching known encrypted value here [Shadow Fight 2 cheat – finding encrypted value in Game Guardian] In most real life games, you will see even more complex encryption. For example, maybe something like this. In-memory value = 1083112 + in-game value * (-2048.1) . So the in-memory value will be float number, which can be positive or negative. Almost impossible to find, right? Let’s try it on real game. In this video (not made by gamecheetah.org) you can see how to use Game Guardian fuzzy search to find encrypted values in Eternium: Mage and Minions.1 point
-
Game Guardian group search BY GAMECHEETAH.ORG · MAY 29, 2017 In previous article from this series, we learned basics on how to use Game Guardian to change known values [LINK]. This method is useful when we are dealing with values that can be changed, so we can refine our search multiple times, until we find the right address. In many cases, you will need to find values that can’t be changed from the game (ex. prices from the in-game shop), or to find two or more similar values faster (health and mana). In this tutorial you will find out how to use Game Guardian group search. But first, let us explain what exactly is group search. All data from some game are stored in memory when game is started, and every in-game value is stored in different address. If you used Game Guardian, Cheat Engine, or any similar program, you maybe noticed that there is usually hundreds millions unique addresses occupied by the same game. All addresses are marked with unique code (ex. 9D786251 or 895D2314). When we scan for only one value, Game Guardian will search through all addresses and save the ones that stores wanted value. On repeated search with different value, it will search through saved list, and make smaller list that contain only changed values that stores new wanted value. Game Guardian group search When we do Game Guardian group search, we are searching for two or more values that are close to each other. All addresses are marked with unique hexadecimal number. The reason behind this is that hexadecimal system is more suitable for computer systems, because each digit (from 0 to F) represent 4 bits. So one byte (8bits), let’s say 00000000 in binary, can be written as 00 in hexadecimal. Biggest value that can be stored in one byte is 11111111 binary, or FF in hexadecimal. If you want to know more about this, please read this article [LINK] on Wikipedia, as you will need to understand this if you want do use Game Guardian for something more advanced. Basic syntax for group search is “VALUE1;VALUE2;VALUE2:RANGE“, without quotes. You need 2 values minimum, and you don’t need to define RANGE explicitly. If you don’t define range, Game Guardian will define it as 512. This can be difficult to understand, but let us see the example. Game Guardian group search examples Here we will imagine that this values are stored in some addresses. 8D7C6B00 12 8D7C6B01 13 8D7C6B02 14 8D7C6B03 15 8D7C6B04 16 8D7C6B05 17 8D7C6B06 18 So we want to find the addresses that contains values 13, 15 and 16, we can use this line. 13;15;16:500 Game Guardian will search all addresses that contain values 13, 15 and 16, and there are up to 500 addresses between them. There is probably a lot of addresses that contains 13,15 and 16, and which are close to each other. In most cases, you will search similar values (gold and silver, or price and product) , so they will be close to each other. We could do the same search again, with smaller range. If we run this query, 13;15;16:5, we will find our values too, but with less false positives. It will search all values 13,15 and 16 that are up to 5 addresses from each other. It will drastically narrow our search. Game Guardian ordered group search There is one similar search, ordered group search. Syntax is almost the same, except the range is defined with mark “::“ , without quotes. We could use this search if we are sure that numbers are in exact order as we typed in. In the upper example, 15;13;16:5, 16;13;15:5, 16;15;13:5, 13;16;15:5 will find the same addresses (8D7C6B01, 8D7C6B3, 8D7C6B4). But if we search for 15;13;16::5, it wont find anything, because the values are not in the right order. But if we search for 13;15;16::5, it will show us right addresses. Let’s see how this looks like in practice. This is screenshot from the game SimCity BuildIt. Note how some values occupies more space. Remember what we learned about value types in last tutorial [LINK]!! Now, we will see how to use this knowledge in practice. Using group search for cheating SimCity BuildIt As we already show in this article [LINK], cheating SimCity BuildIt is really easy with group search. Now we will only show how to cheat on the achievements screen, as we do not need to use incremental change (we will cover this latter). In SimCitz, go to the achievement screen. Choose one of the achievements – in video there is one where you need to have 1500000 Sims living in your city to get 32 Simoleans. Make DWORD union search – 1500000;32. You will find only two addresses. Edit the 1500000 to 1 and 32 to, let’s say, 10000. Now claim your hard earned 10000 Simoleans. And this is all for now. In next tutorial, we will expand this knowledge with incremental editing the value – this will allow us to refine results, even if we can’t change values directly from the game.1 point
-
GameGuardian tutorial – Shadow Fight 2 cheat by Gamecheetah.org · Published April 5, 2017 · Updated April 6, 2017 Today, we are going to do Shadow Fight 2 cheat with some excellent piece of software, Game Guardian. It is classic memory scanner/editor, similar with Cheat Engine on PC, but with some unique features. One of the most important things is that Game Guardian runs on x64 and x86 devices, which means that you can use it in emulators (NOX, Bluestacks, Andy, Genymotion, Droid4X…) or various devices, without worrying about compatibility. It requires Android v.2.3.3(Gingerbread) or newer. Before we start with basic tutorial, it will be nice if we mention some most noteworthy features that would be important to us. Specific thing about cheating games on mobile devices is that developers usually try to encrypt everything, from memory values, savegames stored on the device, and even data sent over network. Opposite to PC games, where most of the things are not encrypted. The main reason for this are micro-transactions implemented in mobile games, where you have to pay for additional stuff – diamonds, gems, energy… Game Guardian in most cases successfully finds and changes encrypted values, because it supports XOR, which is often used to protect in-game values. In addition, it also supports speedhack(game acceleration and deceleration), and even “time jump”, which allow player to jump to exact moment in future. This is only surface; Game Guardian also supports more unique and useful features, which you can check on Game Guardian official website (LINK). From the same website you can download newest versions of Game Guardian, and also donate so the project can continue. NOTE! Game Guardian requires rooted device in order to work. If you need help about that, see tutorials on this link (XDA-Dev). Shadow Fight 2 cheat First of all, download and install GGuardian on your rooted device or emulator (LINK). After you start it, grant if root access. In the upper right corner of the screen, you should see GGuardian icon. Open Shadow Fight 2, write somewhere value that you want to change, and click on GGuardian icon. Game Guardian will ask you which process you want to choose. Choose Shadow Fight 2. After you selected process, do the following steps. First, click on the last icon in upper right corner, and click on Known (exact) search. You will see the main window for searching. As value insert the number that you want to change. In our case, it was number of gems on the first picture, 9. Type is DWORD, and you have to click on “The value is encrypted“. After everything is done, click on New search. Spend some gems, or earn one by watching promo videos, and then search for new value. You have to repeat the same steps, but instead of clicking on New search, click on Refine. Repeat the same procedure until only one value is left. Click on it, and change it. If you change it to 0, you will get maximum number of gems. If you change it to 4.294.967.295, you will get 0 gems. So choose one number between, or just put 0. If you have done every step correctly, your game will look like this. And this is the end of story. Shadow Fight 2 cheat is working. Repeat the same procedure for EXP and GOLD. Happy cheating!1 point
-
-1 points
-
Version 101.1
201,216,428 downloads
Overview: Play games your way! “GameGuardian” is a game cheat / hack / alteration tool. With it, you can modify money, HP, SP, and much more. You can enjoy the fun part of a game without suffering from its unseasonable design. Requires Android: 2.3.3+ GameGuardian Features Summary Runs on ARM, x64 and x86 devices, including x86 emulators (LDPlayer, Droid4X, MOMO, KOPlayer, Andy, Memu, Leapdroid, AMIDuOS, Windroye, RemixOS, PhoenixOS, AVD, Genymotion, Nox, BlueStacks etc.) Supports Android 2.3.3+ (Gingerbread) through Lollipop (5+), Marshmallow (6+), Nougat (7+), Oreo (8+), Pie (9+), 10+. Support work without root via different virtual spaces. Support different emulators like PPSSPP, ePSXe, GameBoy etc. Game deceleration and acceleration (speedhack) for ARM and x86 devices, including x86 emulators. Also supports both 32-bit and 64-bit applications on 64-bit devices using speedhack. Search feature: encrypted values. Search of unknown values when specifying the difference between values. Search addresses by mask. Explicit and "fuzzy" numeric searches. Text (String, Hex, AoB) search. Supports: Double, Float, Qword, Dword, XOR, Word, Byte, or Auto data-type searches. Lua scripting support. Modify all search results at once. Filtering of search results (address greater than and less than, value greater than and less than). Search in the background feature. 'The fill' feature. Time jump feature. Dump memory. Copy memory. Customizable UI. App locale for over 50 languages. And, much, much more. Notes: ** ROOT or VIRTUAL ENVIRONMENT ONLY ** This tool only works on rooted devices or in virtual environment (without root in limited mode)! GG can work in limited mode without root, through a virtual environment. For example, through Parallel Space, VirtualXposed, Parallel Space Lite, GO multiple, 2Face and many others. Read the help for more details. You can find more information about rooting your device at XDA Developers. Want to help us improve, or add a translation? Then please visit thread "If you want to add a new translation or improve an existing". If you are having issues with the app, please visit thread "Gathering information about GG errors". Want to donate and help keep the project going? That's awesome! You can donate any amount (anything helps) here: Donate Need help with how to use this application? Please visit "Video tutorials" and forum "Guides". Credit: @d2dyno - Owner, lead designer, project management. @Enyby - Lead coder, project management. @Trasd - Technical consultant, project management. @Aqua - Creator (retired).-1 points