Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/27/2017 in Posts

  1. It's free craft people want for latest version...?
    5 points
  2. If you don't have a lot of xp... This same method might work for gold... But I went creative on the dev
    4 points
  3. Successful Might not be the best method.... Buuuut, it's extremely easy.... If I upload a video, I don't care if it's made public on other channels... PLEASE GIVE CREDITS.
    2 points
  4. 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=64193
    1 point
  5. XOR SEARCH: This method of search is very unique and not intended for you to try as a first method. Once you've tried all memory types, all ranges, unknown increased and unknown decreased and all fail, this method might be what you want to do last. XOR is a simple encryption method, but without the key, you can't know the value. And games lately (not all) will have a key that changes on value change, making finding these types of values EXTREMELY difficult if not impossible... Until now. HUGE thanks to @Enyby The search All the games I've come across that use this method have all been dword, so I'll stick to dword. Also most games (except For Emblem Heroes and some parts in GunPie) the XOR key and XOR value are 4bytes apart. Let's say you have 25 gold. To search 25 with xor key 4 bytes away 25X4 If you know your value is within a range but not 100% on value, so you know you collected about 40 to 45 gold, your search can be 38~50X4 Then when you collect 10 more 48~60X4 During these searches, if you want to eliminate many results that are most likely not it, you can do a does not equal 0 and does not equal the value. You search 500X4 Followed by ≠0 ≠500 Then you can resume the XOR method. This search cannot be done with a group search. If done properly, can do unknown changed/unchanged. Editing You have a couple ways you can edit values. Edit results and if you want to edit to 12345 Put 12345X4 If you want to edit multiple values keeping xor and doing a different value for each. If you have 3 results from searching 500X4 Edit results 100;5000;15000X4 First value week be edited to 100 2nd 5000 and 3rd to 15000. The other option ,goto address, copy value above (xor key) using the xor calculator built into GG, calculate value and got can type values and re-encrypt with proper xor key. Increment edit If you have 5 results and want each to be different, separate each edit with a ;. So for 5 results 5;10;15;20;25X4 Value 1 will be 5, 2 will be 10..... Then you can figure out the correct value, revert and remove the wrong values and continue with editing that one value. List of known games using XOR protected values. Tiny Miners Bullet Force Gunpie Super Mario Run Fire Emblem Heroes (SP: 8 is xor offset. Level: 24 is xor offset) Touch Tank Target Acquired Futurama: Worlds of Tomorrow Pokémon: Magikarp Jump Skychamp HAWK: Freedom Squadron Candy Crush Heroes Infinite Stickman Legend (XOR offset 8) Zombie Pandemic Survivor
    1 point
  6. I don't know any way to duplicate fixed items. I don't think it's possible to copy-paste the information of an inventory slot to another. I only know how to work with variable numbers, and since you can't stack and split a weapon, the only approach I saw possible would be editing or freezing the condition. I can find the values, thanks to @NoFearfor showing new ways to find unknown values with fuzzy searches. By fuzzy searching in a map, and rescan decreasing values after hitting one zombie, I narrowed down to a number between 0 and 100 which corresponds to condition. It changes -2 points after each hit. It has a value check on the address above it but freezing both like freeze dupe had no effect before or after relog. This assuming condition is a decreasing value which goes from 100 to 0... So I thought maybe it's an increasing value for the weapons own damage but also no success even after finding another address which increases +2 points after each hit and is directly related to the weapons condition as well. I don't know if it is a situation like gold where NoFear said there were current, initial and spent values/addresses for gold. BTW, many thanks @NoFear, I've really learned a bunch from you directly or indirectly only on this thread. Genius!
    1 point
  7. No. they are SAME, no diffrence of functionality or speed. Think of it, as you want to eat water. You have a mug and a glass. Some can't drink with mug, some can't drink with glass, some don't matter. But at the end, they drink water, and there is no diffrence in quality.
    1 point
  8. I've already posted a video and tutorial on how to dupe items with freeze so you fill your chests within a minute.. Same method working on v1.5.1
    1 point
  9. Same as you did in video, i wil try it again. It was hard for me but now i know what to do. So i will post info. Now i know how to duplicate and max energy.
    1 point
  10. @Backlift gg.searchNumber('100', gg.TYPE_DWORD) -- 1_find a value local d = gg.getResults(1) -- 2_get its address d[1].address = d[1].address + 12 -- 3_use the offset on it (for example +12) d = gg.getValues(d) -- load values print(d) d[1].value = 120 -- set new value in var gg.setValues(d) -- write to game gg.getValues(d) -- read from game print(d)
    1 point
  11. Logic is next: You set rules for new value. New value = Old value + difference. Search run as (new value) sign (old value + difference). If sign is EQUAL, then it is mean test for unchanged. If INEQUAL - for changed. _______________________________________________ added 2 minutes later For example old value id 5, difference is 0, new value is X. And if you search (X == 5 + 0) then this mean value unchanged and stay 5. If you search (X ~= 5 + 0) then this mean value changed and can be any but not 5.
    1 point
  12. @Enyby it would be nice to implement such thing: After install that makes 2 icons 1_When GG at first run (hw or sw) check if it is run properly and everything is loaded, that means this type of acceleration works. 2_if 'yes', deletes the other one, if no, takes no action. So user may try the other one and if that at works, that delete, this one icon. For ex.: 1_I choose HW 2_Gameguardian is at first start, so it checks after a few seconds that if everything is loaded and fine or not 3_if everything fine, deletes the SW (because HW worked properly, no need for SW) 4_if there is problems, takes no action What do you think?
    1 point
  13. Just lets you die, all stats will be go to normal. :v
    1 point
  14. Again, please, I only ask you give credit to me if you repost this anywhere... Using the N=O+D function, find your XP value. Once you find it, copy it.Save and restart game . Double value search your gold and xp in an ordered search. Should have 4 results. Goto the first result of your gold, scroll up and only -8 bytes away is an address being pointed to. Copy address location. Dword search the hex of address location. Should have 1 result. The 1st xp value, -8 bytes away, copy the address location. Goto got hex search of the pointer for gold. Edit dword value and paste the xp hex address and your gold will not point to the xp value. This is of you have a lot of xp. XP is very easily hacked, so you can remap gold to xp qty. Save edit and reopen and everything saved fine.
    1 point
  15. @stathis https://gameguardian.net/forum/topic/17533-why-there-is-two/?do=findComment&comment=59600
    1 point
  16. Use n=o+d people, find xp instantly.... _______________________________________________ added 4 minutes later Old video... But this is how you find xp...
    1 point
  17. Honestly haven't had time. My thoughts with crystals/exp that you buy/get in packs... They aren't a "value" is my guess. They are one an "id". Hypothetical example.. You have chance to earn 1 3 20 or 50 crystals. They are crystal pack 1, 2,3,4. Since this game uses pointers I would look into finding the "end" of the pointer and work backwards. So, one method I like to use is find a word related to what you are doing. So "crystal". Convert that to hex. I would do RYSTAL and rystal saves you a 3rd search if they do a C with the lowercase. So for the lowercase Byte search this 72h;79h;73h;74h;61h;6ch::6 Then search only one of those like the 72h. Now these results are all plain text. Goto location, and see if it spells out like "crystal_reward_40" or something. Then scroll nearby and look for similar strings. You'll find patterns and most likely a value that is always above these. Copy the address, search hex dword of that address. If you get 1 result, that's the pointer. Then you find nearby something like crystal_reward_200. Copy address location of pointer, and the hex dword search value, edit the value dword and paste location as hex dword. Now what should be 40 reward points to a 200 reward.
    1 point
  18. As I know it's about Hardware Acceleration (HW) and Software Acceleration (SW). They have no difference in overall functionality, I use (HW), if one failed for you, use the other. It was implemented by developers as some devices had problems with Hardware Acceleration (As it's default at settings "Interface Acceleration") so they may start by (SW).
    1 point
  19. Two activities to run. The first one with hardware acceleration - "GG (HW)", the second one with software acceleration - "GG (SW)". Now it will always be so. On some firmware works only one of this options, and on the usual firmware - both work. You can use any option that works for you. This option does not significantly affect anything.
    1 point
  20. Ohhh So Thats The Connection... Aqua's Wife Loves BullDog.. Eh?? Y Not Change To Paladog..?? Or DarkDog..
    1 point
  21. Yeah..The Dog Staring You When You Cheat.. Im Feeling Guilt O.o Pizza Pizza Mo Mitza Banana Fana ****!!
    1 point
  22. new icon for GameGuardian?
    -1 points
×
×
  • 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.