Leaderboard
Popular Content
Showing content with the highest reputation on 08/07/2022 in all areas
-
View File Parallel Space Pro + 32-Bit Support + 64-Bit Support Requires Android: Android 4.0.3-4 / Ice Cream Sandwich MR1 or later. There is support for x86. Video: Before installing the optimized version, uninstall the version from Google Play. Differences of the optimized version: no error 105. About second apk (32-Bit Support): About third apk (64-Bit Support): You do not need to install it if you do not intend to crack 64-bit games. Submitter Enyby Submitted 07/17/2019 Category Virtual spaces (no root)1 point
-
1 point
-
1 point
-
"Disable protection for all applications" and MagiskHide If you experienced problems with activate feature "Disable protection for all applications" when enabled MagiskHide - disable it. After activate feature you can enable MagiskHide back. https://github.com/topjohnwu/Magisk/issues/12891 point
-
On first line error. Adb typo. Use cmd runned from administrator on pc. Maybe you not download adb binaries or not install drivers for device.1 point
-
1 point
-
Nothing interested. You need collect log via adb from PC, if you do not have root.1 point
-
1 point
-
1 point
-
1 point
-
Search over 4pda forum topic: https://4pda.ru/forum/index.php?showtopic=492661 It must be on last pages.1 point
-
Avoid use global variables Global variables is slow. Also if you put local gg = gg At top of your script it can speed up it. Just one line. Now see tests: local n = 1000000 local t = os.clock() for i = 1, n do gg.isVisible() end t = os.clock() - t print('use global gg: '..t..' seconds') local gg = gg local t = os.clock() for i = 1, n do gg.isVisible() end t = os.clock() - t print('use local gg: '..t..' seconds') a, b, c = 1, 2, 3 local t = os.clock() for i = 1, n do c = a + b end t = os.clock() - t print('use global vars: '..t..' seconds') local a, b, c = 1, 2, 3 local t = os.clock() for i = 1, n do c = a + b end t = os.clock() - t print('use local vars: '..t..' seconds') Results: use global gg: 2.138 seconds use local gg: 1.6 seconds use global vars: 2.068 seconds use local vars: 0.727 seconds It is not big difference, because I run it on powerful emulator. On real device it can be more slow. You can see disassembled code - for global vars need more Lua instructions, so it more slow in any case. Upvalue too slow, Because of that better define local copy of var in places where you need optimization. For example huge math.1 point
-
1 point
-
You asked me how to protect scripts from decompiling. You needed an example. To protect against decompilation, I added assembler / disassembler scripts. Now you can disassemble the script, change the assembler listing, and then assemble it. So you can get a binary script that no decompiler can decompile. I have no specific example yet, maybe I will provide it later.1 point
-
1. No. But you can add special item with this meaning. If user check it - act like he check all items. name this options as "check all" or similar. 2. I do not understand what you talking about. You can use any data from previous prompt. For build another prompt, Or for search. As text or as number. All up to you.1 point
-
1 point
-
Only if you record it via adb from PC. Without logcat nobody can tell you why it closes.1 point
-
Record logcat when it closes. How to collect logcat (#c1aa00vp)1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Both link is same. I think they use ip for show different version of website. [added 0 minutes later] Try upload apk here.1 point
-
1 point
-
1 point
-
1 point
-
Your solution can give side effect: open menu after that, like user click on gg icon. You need hide gg ui after prompt, for prevent that. [added 2 minutes later] gg.setVisible(true) -- call gg.prompt() here gg.setVisible(false) Something like that.1 point
-
I think he doesn't need a lawyer to speak for him. And what he wants, he stated quite clearly.1 point
-
I pointed out to you the essence of the problem: you hide the interface first and then show the dialogs. Therefore, there are no eye icons. How you will eliminate it is your business.1 point
-
The log is empty. In any case, one log is not enough, it is necessary to clearly describe the essence of the problem with the text.1 point
-
You need swap order of you code and hide GG UI. Because you firstly hide GG UI and second do your work. Obviously your gg.prompt work when GG UI hide.1 point
-
Eye icon only visible while GG UI visible. If you hide GG UI, then no eye icon.1 point
-
1.545.691.265 xor 0 = 1545691265 1.545.691.300 xor 37 = 1545691265 1.545.691.494 xor 487 = 1545691265 so it is simple xor with key = 15456912651 point
-
1 point
-
1 point
-
1 point
-
1 point
-
No way. This was done so that no other messages could be faked. Use multi choice. Add special choices like "unlock all", "unlock first 100", "unlock A & B D & F & H" and so on. If user check it - do appropriate actions. [added 1 minute later] For change title - check API description. For some calls it is possible, but you can not avoid word "script", by some reason as in toast.1 point
-
1 point
-
If there is enough memory, then the process killer works. Either integrated into the system or installed separately. Do not use data storage in memory. Search will be slow, but should not take off.1 point
-
Try read in-app help: https://gameguardian.net/help/help.html#daemon_killed Your device is too small amount of memory. Also you maybe need prevent unload level 3.1 point
-
1 point
-
t = {{address = _address, flags = gg.TYPE_DWORD, value = 0x1}} gg.setValues(t) Use this code instead.1 point
-
1 point
-
On the phone, the pointers are wet, and on the emulator - salty. There are no other differences.1 point
-
Pointer it everywhere pointer. This is just a number in memory. Memory address.1 point
-
Maybe you will read the help? It says how to freeze. And there are examples on the forum. In particular, it is not enough to set freeze to true. It is necessary then to add elements to the saved list.1 point