Jump to content

Enyby

Administrators
  • Posts

    8,811
  • Joined

  • Last visited

  • Days Won

    1,020

Everything posted by Enyby

  1. Enyby

    LUA scripting

    Same value.
  2. Enyby

    LUA scripting

    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.
  3. Enyby

    LUA scripting

    why color and wallhacks are not working (#2vpn9amx)
  4. Enyby

    GameGuardian

    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.
  5. Enyby

    GameGuardian

    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.
  6. t = {{address = _address, flags = gg.TYPE_DWORD, value = 0x1}} gg.setValues(t) Use this code instead.
  7. On the phone, the pointers are wet, and on the emulator - salty. There are no other differences.
  8. Pointer it everywhere pointer. This is just a number in memory. Memory address.
  9. 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.
  10. I do not know if this is the same code, or you have already changed something. If you change something in the code, then you need to post it again. Because what was previously irrelevant.
  11. Idk. Write code so that that variable cannot be nil when executed here. Without seeing all the code, nothing specifically can be said.
  12. Again, just read message: _address is nil. But must be long (number).
  13. Yep. Consult with API help if you not sure how write something.
  14. gg.Type_DWORD case is matter. All constant must be totally in upper case.
  15. This is how the ARM architecture works. Most addresses are not absolute, but relative, relative to the PC. This is done to save space in instructions. The instruction size is 4 bytes. The size of the 32-bit pointer is also 4 bytes. An absolute address almost always requires 4 bytes, since the code can be located in different places. A relative address can be encoded with 2 or 3 bytes. This will give the opportunity to refer to the memory near the code, where this code would not be located. And since .bss is not far from .code (.text), this is enough.
  16. For some reason, binaries are not running on your firmware. Permission denied. Try another virtual space. If this does not help, you need root.
  17. Offset from PC in LDR location. Useless in any other place.
  18. Watch on YouTube: 83.0: Fast freeze - GameGuardian
  19. What? http://www.catb.org/~esr/faqs/smart-questions.html
  20. What error? [added 0 minutes later] local copy = false local t = gg.getListItems() if not copy then gg.removeListItems(t) end for i, v in ipairs(t) do v.address = v.address + 0xe40 if copy then v.name = v.name..' #2' end end gg.addListItems(t) gg.setValues() gg.setValues() require parameter.
  21. This is not a silver bullet. This does not work for all values or for all games.
×
×
  • 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.