Jump to content

Enyby

Administrators
  • Posts

    8,811
  • Joined

  • Last visited

  • Days Won

    1,033

Everything posted by Enyby

  1. You can use filters to filter results between needed addresses.
  2. Need logcat from first run speedhack on mod.
  3. Changelog for GG. I mean changes about x64 speedhack.
  4. Need separate page with full description of VIP advantages and possibilities. And place link to it to visible place.
  5. I can not do anything for speedhack in last updates. Read change log for More info.
  6. I think problem in your device, firmware or third party programs because I do not change anything for your issue except debug output. Wait for release 8.4.3 by d2dyno or use this test build.
  7. Enyby

    multiple search

    We have plan on this. But you must understand it takes another memory on sdcard or ram.
  8. Test build. Open game. Openg GG. Start record logcat. Open speedhack. Press left arrow. Press right arrow. Long-press on speedhack number. Stop record logcat. Send log file to me. GameGuardian.git_signed.apk
  9. Enyby

    multiple search

    You mean group search?
  10. Firstly you need explain what and how you searched. Secondly write used version of GG.
  11. After new release I create some test builds for you. I write here as it be ready.
  12. I need logcat from 8.4.0. On it too touch is not work?
  13. Try other version: 8.4.0 8.4.1 And tell me result.
  14. I do not see any problems in logs. All works in the same way on both version. Can you write video with issue? And I used 8.4.2 speedhack on Asphalt 8 without any problems.
  15. Yes, all ok.
  16. Yes. It must be another run game for every logcat because speedhack inject only first time.
  17. Enyby

    GameGuardian

    What? I do not understand.
  18. Logcat must be catch on fresh start for speedhack first time. You must restart game before any logcat. Your logs written not on fresh start.
  19. Need logcat from both versions: 8.3.9 and 8.4.2. Logcat need write on first fresh attempt use speedhack.
  20. "D" because number is dword. I know it from my previous investigation for this game. Dword is 4 byte data type. Then region for 4 dword is 4*4 - 3 = 13. Because region is max difference between first bytes numbers in group.
  21. Try not simple value search. 2 and 3 algorithm from help.
  22. Usually cifer worked with xor - this is very comfortable for this operation. Because xor A twice got same number. And some shift: to left, to right or cyclic shift. Of course can be another biwise operators - and, or, not but it rarely. First step in any investigation - write source and destination in bit form and compare visually. Another step - compare changes from similar numbers and how it changes reflect in destination. Next steps dependent on getted results.
  23. Many tries with script, xor, compare values in different way. In the end I noticed similar look up as previous task. I check and all worked.
  24. Answer: same as previous is double. double - double hex - first 32 bit as dword. 10 = 4024000000000000 1076101120 2978 = 40a7440000000000 1084703744 3056 = 40a7e00000000000 1084743680 3234 = 40a9440000000000 1084834816 3254 = 40a96c0000000000 1084845056 3289 = 40a9b20000000000 1084862976 3299 = 40a9c60000000000 1084868096 3309 = 40a9da0000000000 1084873216 3334 = 40aa0c0000000000 1084886016 3354 = 40aa340000000000 1084896256 7458 = 40bd220000000000 1086136832 7468 = 40bd2c0000000000 1086139392 7478 = 40bd360000000000 1086141952 15492 = 40ce420000000000 1087259136 15570 = 40ce690000000000 1087269120 Code for http://www.tutorialspoint.com/compile_java_online.php public class HelloWorld{ public static void main(String []args){ int[] arr = new int[] {10,2978,3056,3234,3254,3289,3299,3309,3334,3354,7458,7468,7478,15492,15570}; for (int j: arr) { long l = Double.doubleToLongBits((double)j); System.out.println(j + " = " + Long.toHexString(l) + " " + ((int)(l >> 32))); } } } For your new data: 1 = 3ff0000000000000 1072693248 2 = 4000000000000000 1073741824 3 = 4008000000000000 1074266112 4 = 4010000000000000 1074790400 5 = 4014000000000000 1075052544 6 = 4018000000000000 1075314688 7 = 401c000000000000 1075576832 8 = 4020000000000000 1075838976 9 = 4022000000000000 1075970048 10 = 4024000000000000 1076101120 11 = 4026000000000000 1076232192 12 = 4028000000000000 1076363264 13 = 402a000000000000 1076494336 14 = 402c000000000000 1076625408 15 = 402e000000000000 1076756480 16 = 4030000000000000 1076887552 17 = 4031000000000000 1076953088 18 = 4032000000000000 1077018624 19 = 4033000000000000 1077084160 20 = 4034000000000000 1077149696 21 = 4035000000000000 1077215232 22 = 4036000000000000 1077280768 23 = 4037000000000000 1077346304
×
×
  • 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.