Jump to content
  • 0

my gg toast isn't visible/appearing, what should I do to solve this problem ?


_yourram
 Share

Question

8 answers to this question

Recommended Posts

  • 0

[ @_yourram ]
---

Quote

still gg.toast doesn't appearing and I know about gg.alert() but I just want to fix this problem :!

It's either notification/permission/or some daemon problem:

  • > Hold game guardian app shortcut -> App Info -> Grant all kind of notification (badge, etc).
  • > Allow display over other apps
  • > Allow any kind of permission
  • > Run this command on termux:
su
setenforce 0

then go inside Game Guardian -> Fix It -> Switch to work with SELinux and restart the app
---

Quote

do you know how to run the "changed as search result" command in a script?

Don't understand. Please describe it more precisely.
---
To see the toast, you need to close the Game Guardian UI:

gg.setVisible(false)
Edited by kiynox
Link to comment
Share on other sites

  • 0

[ @_yourram ]
---

Quote

Load all changed elements as a result of the search - GameGuardian

You can but it has to be manual, just use gg.addListItems()

--Search DWORD: 30
gg.searchNumber('30', gg.TYPE_DWORD)

--Get search results
results = gg.getResults(gg.getResultsCount())

--Store addresses that wants to be edited
edits = {}

--Edit 3,6,9 result
for k, v in ipairs({3,6,9}) do
	if v ~= nil then
		edits[#edits + 1] ={
			address = results[k].address
			value = results[k].value --Change your value here
			flags = results[k].flags
		}
	end
end

--Apply edits
gg.setValues(edits)

--Save edits
gg.addListItems(edits)

---

Link to comment
Share on other sites

  • 0

 

3 hours ago, kiynox said:

You can but it has to be manual, just use gg.addListItems()

--Search DWORD: 30
gg.searchNumber('30', gg.TYPE_DWORD)

--Get search results
results = gg.getResults(gg.getResultsCount())

--Store addresses that wants to be edited
edits = {}

--Edit 3,6,9 result
for k, v in ipairs({3,6,9}) do
	if v ~= nil then
		edits[#edits + 1] ={
			address = results[k].address
			value = results[k].value --Change your value here
			flags = results[k].flags
		}
	end
end

--Apply edits
gg.setValues(edits)

--Save edits
gg.addListItems(edits)

@kiynoxalright, thanks you helped me alot 🙂

Link to comment
Share on other sites

  • 0
3 hours ago, kiynox said:

You can but it has to be manual, just use gg.addListItems()

--Search DWORD: 30
gg.searchNumber('30', gg.TYPE_DWORD)

--Get search results
results = gg.getResults(gg.getResultsCount())

--Store addresses that wants to be edited
edits = {}

--Edit 3,6,9 result
for k, v in ipairs({3,6,9}) do
	if v ~= nil then
		edits[#edits + 1] ={
			address = results[k].address
			value = results[k].value --Change your value here
			flags = results[k].flags
		}
	end
end

--Apply edits
gg.setValues(edits)

--Save edits
gg.addListItems(edits)

I'm not too good at scripts, what am I doing wrong?

Plus can you add any type of value there where you have written "Change your value here"

20231222_145853.jpg

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • 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.