Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/25/2018 in Posts

  1. View File Parallel Space + 32-Bit Support + 64-Bit Support Requires Android: Android 4.0.3-4 / Ice Cream Sandwich MR1 or later. There is support for x86. Video: Work without root via Parallel Space - GameGuardian (#94txowoq) No root via Parallel Space on Android 9.0 Pie - GameGuardian (#cfa9pw40) Before installing the optimized version, uninstall the version from Google Play. Differences of the optimized version: no error 105. About second apk (32-Bit Support): About third apk (64-Bit Support): You do not need to install it if you do not intend to crack 64-bit games. Submitter Enyby Submitted 04/15/2018 Category Virtual spaces (no root)  
    1 point
  2. Search 0 and change all to 9999999. It is modify memory of any game.
    1 point
  3. Try. No. If you not delete previous version manually.
    1 point
  4. Hello @Enyby, hoping you can help me here. Just recently, whenever I try to use my keyboard within an app running in Parallel Space, the app crashes immediately. Will updating the Parallel Space apk fix this? And if I do download the current apk and install it, will all data from previous apk (such as loaded apps) be deleted? Only reason is the app I primarily play I cannot sign into again if it gets deleted. Thank you in advance.
    1 point
  5. Hy, i use following simple script gg.searchNumber ('123;4567;8901', gg.TYPE_DWORD) gg.getResults (100) gg.editAll ('545454', gg.TYPE_DWORD) How can i solve my problem. I have to search by group to find the correct 123 value. But i only want to change 123 into 545454, the other two values should be as they are. And what i have to do, that gameguardian will go back to the game. It always come up the Message - Script ended.... - Copy - Restart - OK. After the run of the script. Gameguardian should go back to the game. Sorry i'm new in Lua, and try my first steps.... ;-)
    1 point
  6. 1 point
  7. gg.setVisible(false) gg.searchNumber('123;4567;8901', gg.TYPE_DWORD) local results = gg.getResults(100) -- may return a string with error in some cases for i, v in ipairs(results) do if v.value == '123' then v.value = '545454' elseif v.value == '4567' then v.value = '998877' end gg.setValues(results) -- may return a string with error in some cases -- script will be ended when user opens GG interface by clicking on the floating icon while true do if gg.isVisible() then break else gg.sleep(100); end end os.exit()
    1 point
  8. Then you simply need to search it right after performing group search. There is a function called "gg.setVisible" for this purpose. See API docs. https://gameguardian.net/help/classgg.html#a4ad04f38598e00a393edc274e38b2009 Here is the example of applying these things to your script: gg.setVisible (false) gg.searchNumber ('123;4567;8901', gg.TYPE_DWORD) gg.searchNumber ('123', gg.TYPE_DWORD) gg.getResults (100) gg.editAll ('545454', gg.TYPE_DWORD)
    1 point
  9. -1 points
×
×
  • 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.