Jump to content

Enyby

Administrators
  • Posts

    8,811
  • Joined

  • Last visited

  • Days Won

    1,015

Everything posted by Enyby

  1. Enyby

    LUA scripting

    Same. _______________________________________________ added 1 minute later data[A] but var data not defined. You used var d, not data before.
  2. Enyby

    LUA scripting

    Script can do some actions in background. For example every 5 seconds search some values and change it. Without user actions. In background. _______________________________________________ added 0 minutes later quote not closed.
  3. Enyby

    LUA scripting

    You can store state to file and load on each start script. Or wait for some actions. In last case user do not need run script each time. But this not always possible. function sleep(s) local ntime = os.clock() + s repeat until os.clock() > ntime end while gg.getResultCount() < 10 do c = gg.getResultCount() gg.toast('I wait for you! Only '..(10 - c)..' need!', true) sleep(3) end gg.alert('You done!')
  4. Enyby

    LUA scripting

    Depends on your logic. Read Lua manual reference posted in first post. if gg.getResultCount() == 0 then gg.alert('Find something and run script again!') else gg.alert('Wow! You found '..gg.getResultCount()..' results! Not bad!') gg.toast('You cool!') end
  5. Enyby

    LUA scripting

    Script for hack Asphalt 8 nitro: gg.searchNumber('2;8;10;12;15;20;25;30:61', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) print('Replaced: ', gg.editAll('1000', gg.TYPE_FLOAT)) print('Nitro hacked!')
  6. Enyby

    LUA scripting

    Lua table not specified order of fields. Maybe in future I try fix this. I make this support of scripting in last 3-4 weeks. It is first public release. Something can be not good or broken. In future we try improve it.
  7. Enyby

    LUA scripting

    No need change extension. You can load .txt files. Or any others.
  8. Enyby

    LUA scripting

    Script can work with files. It can be useful for create complicated things. API to GG will be edited and extend in future releases. Now present only basic features for scripts. Scripts can be used for automate some things like lot of same actions. For example for Asphalt 8 Enduro Double Down can be written automated scripts which make hundred of replace in one run.
  9. Enyby

    LUA scripting

    d = gg.prompt({A='A', B='B', C='C'}, {A='123', B='456', C='789'}) gg.alert('A + B - 3*C = '..(d.A + d.B - 3*d.C))
  10. Enyby

    LUA scripting

    Yes. And can be created automated calculator/tool based on gg. Present function 'toast', 'alert' and 'prompt' which allow create some dialogs for user. For example 'Input gold amount:' and use this value for make search. data = gg.prompt({[1]='Search value', [2]='Replace value', [3]='Max count'}, {[1]='123', [2]='456', [3]='321'}) gg.searchNumber(data[1], gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) found = gg.getResultCount() gg.alert('We found: '..found) gg.getResults(data[3]) replaced = gg.editAll(data[2], gg.TYPE_DWORD) gg.alert('We replaced: '..replaced) gg.alert('Summary: We search '..data[1]..', found '..found..', replaced '..replaced..' to '..data[2]..' with max count '..data[3]..';') print('Script ended.')
  11. Enyby

    GameGuardian

    https://gameguardian.net/forum/topic/17447-lua-scripting/
  12. Enyby

    LUA scripting

    Starting from version 8.28.0 GG have support of LUA scripts. It can be loaded and run. https://www.lua.org/manual/5.2/manual.html Scripting Documentation: https://gameguardian.net/help/
  13. Enyby

    GameGuardian

    What's New in Version 8.28.0 Added LUA scripting. For additional information, please visit our forum. Added a setting to resize floating icon. Improved resizing of UI icons. Improved start of searches. Improved UI. UI fixes. Bugs fixes. Updated translations.
  14. 07-16 12:03:17.491 401 401 D android-daemon: Try on '/system/lib/libart.so' As I say - ART. Java timers not speedhacked. Game use Java timers.
  15. Wrong logcat. You must collect logcat as explain here: https://gameguardian.net/forum/topic/7419-how-to-collect-logcat/ Copy from app do not enough.
  16. Read link posted by me. On picture all explained. On your Samsung Dalvik, not ART.
  17. How to determine why speedhack does not work As far as I know this game use Java timers and can not be speedhacked on ART.
  18. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  19. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  20. Try use comma and dot, next time. Ban usually for two week. Account can be erased if it encrypted by cloud pass. Some account encrypted, some not.
  21. Enyby

    GameGuardian

    How to determine why speedhack does not work
  22. Picture in svg (maybe can be translated by translators if you do not know English): Speedhack_en.svg or http://svgshare.com/i/2DC.svg Test application: GG tester (#47uthw6s) How to collect logcat / report about error: "Gathering information about GG errors". How to remove arm libs from apk - fix game work on x86 emulators - Solid Explorer, ZArchiver
  23. Enyby

    GameGuardian

    Okey. I understand. We add special checkbox for input decimal values there.
  24. Enyby

    GameGuardian

    http://forum.cheatengine.org/viewtopic.php?t=4890&sid=d7bf55271cd21100fdbc1838d111db5d On Android present ASLR. It is first thing. Second thing - usually right values are not persistent and randomly located on each run. So this things never worked on Android. Linux have different structure from Windows. Usually on Android use malloc for memory allocation and it allocate memory in random place. And order of allocation is unspecified. So as written in CheatEngine FAQ (but for different question):
×
×
  • 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.