Jump to content

Enyby

Administrators
  • Posts

    8,811
  • Joined

  • Last visited

  • Days Won

    1,012

Everything posted by Enyby

  1. Watch on YouTube: How to hide the second icon in the launcher [GG (SW) or GG (HW)] - GameGuardian You can subscribe to our new videos.
  2. We have plans about make tutor app for that and similar cases.
  3. Watch on YouTube: How to change the size of a floating icon - GameGuardian You can subscribe to our new videos.
  4. The most effective version of game killer is game guardian
  5. No way. You can not find the value of Aim with text search.
  6. You search text. This is not work. Text "aim" not connected with aim value. Like you open book and replace all words "page" to something other - this not change pages numbers.
  7. Can not understand anything. Give examples. Preferably with screens or video. In HEX, there is no magic. It's just a hex representation of numbers.
  8. Watch on YouTube: How to change the order of buttons on the toolbar - GameGuardian You can subscribe to our new videos.
  9. You need investigate code for this. No other way.
  10. Most often this is seen from the numbers in the game. If the number is fractional then most likely it is a float. If the integer is dword. However, everything happens. At first I try the often happen versions, if it does not help, then I switch to more general variants, like Auto.
  11. These are memory regions, not functions. In the list of regions, you set a set of memory regions (areas) in which to search for the desired data. Dword, float, word, byte are common types of data storage use Google to learn more about them. Xor is a data type similar to dword just passed through xor with its address in memory.
  12. Select last two memory regions:
  13. What you mean? Choose for what?
  14. Gg never be disassembler. You can search in code memory area if select memory regions of code.
  15. Yes. 8.29.0 and above. I correct title.
  16. Enyby

    LUA scripting

    No. _______________________________________________ added 3 minutes later gg.setRanges(bit32.bxor(gg.REGION_C_HEAP, gg.REGION_C_ALLOC, gg.REGION_ANONYMOUS)) -- do some things like search values -- gg.skipRestoreState() If you call this script on latest GG, then memory ranges will be changed only while script run. After end script its return to values set by user. But if you uncomment last call, memory regions do not restored after script end. And user settings will be lost.
  17. Enyby

    LUA scripting

    local t = { ['en_US'] = 'Hello', ['ru'] = 'Привет', } local lang = gg.getLocale() local s = t[lang] if s == nil then s = t['en_US'] end gg.alert(s)
  18. Enyby

    LUA scripting

    getLocale return string with current locale. You can use this for build i18n script. SkipRestoreState disable restore state of gg after script end. Currently gg restore original memory region set after script end. If you call this function then restore not happens.
  19. Enyby

    LUA scripting

    New: [getLocale] = function: getLocale /* gg.getLocale() -> string */ [skipRestoreState] = function: skipRestoreState /* gg.skipRestoreState() -> nil */
  20. Watch on YouTube: How to hide/show toolbar buttons - GameGuardian You can subscribe to our new videos.
×
×
  • 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.