-
Posts
8,811 -
Joined
-
Last visited
-
Days Won
1,033
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by Enyby
-
Octopus + 32-bit Support + 64-Bit Support
Enyby commented on Enyby's file in Virtual spaces (no root)
-
Octopus + 32-bit Support + 64-Bit Support
Enyby commented on Enyby's file in Virtual spaces (no root)
-
Octopus + 32-bit Support + 64-Bit Support
Enyby commented on Enyby's file in Virtual spaces (no root)
-
@Eduardo28 look like bug in your kernel because all work for me as before. System call 'kill' is broken, so current behaivour is better from old one.
- 1,987 replies
-
1
-
- GameGuardian APK
- Official Download
-
(and 1 more)
Tagged with:
-
@80869969 You are blind or stupid? What written in message?
-
@minhthong0824 local val = 32 print(val..':') for k, v in pairs(gg) do if k:sub(1, 7) == 'REGION_' then if (val & v) == v then print(k) end end end local val = 16 print(val..':') for k, v in pairs(gg) do if k:sub(1, 5) == 'TYPE_' then if (val & v) == v then print(k) end end end local val = 536870912 print(val..':') for k, v in pairs(gg) do if k:sub(1, 5) == 'SIGN_' then if (val & v) == v then print(k) end end end
-
-
Angry Birds Epic - hack lucky coins (gold), snoutlings (silver), essence of friendship (hearts or gems) (#4079u2b6)
-
You need tonumber function for directly convert unsupported string to number. http://lua-users.org/wiki/NumbersTutorial
-
-
path = gg.getFile():gsub('[^/]+$', '') filename = gg.getFile():match('[^/]+$')
-
Sample script with API call makeRequest - GameGuardian
Enyby posted a gallery image in Video Tutorials
-
-
@XxhentaixX You should have a feeling of "wrongness". If you write two million lines, then you should have this feeling and you need to investigate the question of how to make it easier and faster. There is such a principle of "code reuse". This is the first time. And the second point, a good programmer is always lazy. This means that he will prefer creative research than a stupid copy-paste or routine work. You can learn the language as you write the code, there is nothing wrong with that. But you should have a feeling of "beautiful", otherwise you will waste time in vain. For that hour while you were copying the same code, you could learn something new and, in the end, spend the same time, much more productive. Also I advise you to study the basic principles of writing code. For example, if you have a number of 100,000 in 200 places, it's best to have one variable and write it everywhere. So then, if you need to change this number, you did it in one place, and not in hundreds. This should happen to you when you write the code. Try to think a step ahead of the current situation. If you write something two or more times, you may need to generalize these points. https://en.wikipedia.org/wiki/Duplicate_code https://en.wikipedia.org/wiki/Code_smell https://en.wikipedia.org/wiki/Copy_and_paste_programming
-
-
-
-
Fly hack for almost any game - GameGuardian
Enyby commented on Enyby's gallery image in Video Tutorials
-
Suggestions/improvement proposals regarding some of GG features
Enyby replied to CmP's topic in General Discussion
@CmP Will be fixed in the next release. -
Use bit32.bor or "|" as bitwise OR. gg.setRanges(bit32.bor(gg.REGION_ANONYMOUS, gg.REGION_BAD)) gg.setRanges(gg.REGION_ANONYMOUS | gg.REGION_BAD) I advise you to study Lua and how it works, because you wrote a nonsense, from which it follows that you do not understand anything in Lua, but simply combine the text as it is. I do not advise using the BAD region - the search will be slow and there will be garbage in it. If useful values can be found in BAD, then you need to find them, write a log of regions and send it to me, so I corrected this.
-
Virtual spaces to run GameGuardian without root (#ct7bob3)
- 200 replies
-
-1
-
It is label. Learn Lua. Read books or lua wiki. Or use google.
-
Beach Buggy Racing - hack championship - GameGuardian
Enyby posted a gallery image in Video Tutorials