Search the Community
Showing results for 'group size'.
-
Which brazilian group
-
I haven't had much time to help. I found value type double for visual effects like enemy size and player size. For values like 150.2 Try searches like 150.15~150.35 float or double sometimes the value you see, is rounded from the real value.
-
Mobile legends is a RPG game. It will be Xa, float between 0.01~3 i can't tell exactly wich value because i not play this game. In region Xa you wont get buggy. Adjust the values a lik bit. Its possible it could be value 2 and -2 since in most cases they include map size or screen size on rpg games
- 8 replies
-
- Drone view
- Mobile Legends: Bang Bang
- (and 2 more)
-
Any plans for a grouped search?
- 1,992 replies
-
- GameGuardian APK
- Official Download
-
(and 1 more)
Tagged with:
-
We need people who are doing video how to hack games
shinobi97 replied to Enyby's topic in Video Tutorials
can i upload a video on youtube? my video is usually 10 minutes over and size more than 100mb -
Not the shell code part, that's why I wish GG supported hooks. GG would handle the allocation and hooking, and then passes the values to lua. GG is currently external, so it would be a drastic change. I have implemented my own hooking library for lua, so it can be done. Hook example, hookFun = function(x) return x * 2 end -- address -- lua hook function -- arg sizes array -- return arg size -- return or complete function (ret, complete) gg.hook(offset + base, hookFun, [TYPE_DWORD], TYPE_DWORD, HOOK_RET) Native call example -- address -- name -- arg sizes array -- return arg size gg.regsiterNative(offset + base, 'sendPacket', [TYPE_DWORD, TYPE_DWORD], TYPE_DWORD) function StopFalling() packetStopFallingId = 154 return sendPacket(packetStopFallingId, 1) == 1 end
-
Koplayer - 259,902 - 7,899 - 32,905 The difference in size is due to the allocation of memory for Java heap. For example, in Nox one huge piece, about 500 mb, stands out at once. In this case, the application uses only its beginning, everything else is filled with zeros. The same story with koplayer, only here the size is less - 250 mb. If the emulator does not allocate such huge memory sizes, then the search will be faster. If the game does not store data in the Java heap, then you can not use this region - this will significantly speed up the search.
- 1,992 replies
-
- GameGuardian APK
- Official Download
-
(and 1 more)
Tagged with:
-
-
Ok. Any specific size? It says for a Facebook cover photo. I can make it big, so you can resize it.
-
Isn't that the point of listing the Play Store link? Exceeds max size for the site, so I've shared it here: -
-
No. It can be only less apk size. Approximately on 2 MB maximum. No changes in smooth will be happen. It is not dependent things.
- 1,992 replies
-
- GameGuardian APK
- Official Download
-
(and 1 more)
Tagged with:
-
These symbols probably appear when the code is being copied from forum. Retyping the line where an error occured most likely will help. File with the function and a call to it (run from GG to test, if it works): aimbot_function.lua You don't need to do this. If it's group search and you need to search for values of different types, then you specify the type after the value. Otherwise, you don't. In your case, there is only 1 value, type of the search is "gg.TYPE_FLOAT", meaning that float value will be searched. Example, where specifying the type is needed: Objective — search for double value 4.32, followed by dword value 7274, followed by byte value 87 with group size equal to 14. Search string — "4.32E; 7274D; 87B::14".
-
Max downloadable file size is 96mb on premium so its like unusable...u can download apks but not sd data...
-
Rocket Royale script 2020 with infinity health, elite chest....
Enzo_Funny_Gamer commented on DZ_funny_gamer's file in LUA scripts
- 2 comments
-
- Rocket royale
- Teleport to players
- (and 3 more)
-
-
REQ Summoners War: Sky Arena Cheat/Mod/Anything
KuroAshi replied to Lamgiang's topic in Archived topics
let's do a closed group! -
"Icons", not "icon". And it is affected only icons inside UI. Float icon always same size. _______________________________________________ added 1 minute later
- 1,992 replies
-
- GameGuardian APK
- Official Download
-
(and 1 more)
Tagged with:
-
I can't find the Facebook group
-
Hey. Is there any option or hack to be undetected? i mean only simoleons hacking, or only storage size unlimited or what thx for reply
-
i really want help you but i do not understand code perfect and i tried to do someting about size im not 100% sure 2.2.0 mod created by optimum but if it so think he can help you becoz the mod was have orginal file size i hope he help /can help you
-
here i dumped it (i compress it due to the file size limit, just uncompress it with any file manager)dump.zip
-
I got unlimited lure value Let's exchange if anyone have fish detection or big fish size value
-
How to use ordered group search - GameGuardian
Enyby commented on Enyby's gallery image in Video Tutorials
It is max size of bytes need for include first byte of each value. For example if you have 4 dword it will be 13 because each dword is 4 byte and last 3 byte of last dword does not matter: 1111 2222 3333 4[444] It can be calculated as 4 (items)*4 (size) - 3 (3 bytes and end) or 3 (items)*4 (size) + 1 (byte for last item) = 13 If you run simple search with only one type you can use more simple way - count of vars multiply on type size. In this example 4 values * 4 bytes each = 16. It is produce same result because dword 4-byte aligned in memory. But if you search byte with dword then minimal possible size is 2. not 5. 5 can find something like: B??? DDDD Of course all depends from what you want find. You need imagine bigger pattern of you need and calculate maximal count of bytes for include all first bytes on it.