
MAARS
Contributor-
Posts
682 -
Joined
-
Last visited
-
Days Won
28
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MAARS
-
username User Name gameguardian.net HELP PLS
MAARS replied to Jnhacksnmods's topic in General Discussion
The google sign in bug, i think everyone are experiencing it, it never worked for me also -
username User Name gameguardian.net HELP PLS
MAARS replied to Jnhacksnmods's topic in General Discussion
yeah that it, it is a lack of privilege, you should be more active to grind your rank and gain some privileges -
username User Name gameguardian.net HELP PLS
MAARS replied to Jnhacksnmods's topic in General Discussion
show a screenshots, and i guess it might be because of your rank, different rank give you some privilege like accended don't see ads etc... -
I think it is you who dont understand overclocking, by google overclock mean : run (the processor of one's computer) at a speed higher than that intended by the manufacturers. yes the kernel actually increase the clock speed when needed but it will never reach the maximum because it is always locked by the manufacturer to prevent overheating since phone dont have any cooling system. this is called thermal throttling. when you are rooted you can install a custom kernel that do not block your cpu from running at max clock speed even it will break due to overheating
-
root does nothing wrong if installed correctly, root even permit to get the max power of your device by overclocking, and to uninstall system bloatware
-
-
I dont think, the staff accept bug request for custom rom. But i am an Evolution X user myself maybe i can help. what version of evolution are u running on ? are you rooted or using virtual space?
-
-
Give more information if you want an accurate response, or people will just try to guess
-
- 49 comments
-
0
-
- Encrypt
- Encryption
- (and 5 more)
-
The game force close on my device, i don't know why
- 14 replies
-
- @dyno @badcase
- @Enyby
-
(and 2 more)
Tagged with:
-
Can u give the link to the game, there are many of them named like that
- 14 replies
-
- @dyno @badcase
- @Enyby
-
(and 2 more)
Tagged with:
-
- 49 comments
-
0
-
- Encrypt
- Encryption
- (and 5 more)
-
I have tested down bellow seem like you cant undo it, i have also checked the account setting for undo flags but there are none
-
Memu . And i dont think Gameloop is the good choice for cheating
-
Thank you very much
-
And dont forget to sign the app again before installing if you are not rooted. you can use SAI
-
Bye bye Google play services
-
Look dope but, when you are planning to share your tools or script with people just write it in English or make a translation for English. It will be great
- 2 replies
-
1
-
- Hack Finder
- Float Finder
-
(and 1 more)
Tagged with:
-
Never mind i have just done some research and find out coroutine actually block the main thread even it is executed in another state i have done some test local thread2 = coroutine.create(function () for i =1, 10 do print ("thread2") end end) local thread1 = coroutine.create(function () coroutine.resume(thread2) print ("thread1") end) coroutine.resume(thread1)
-
Actualy my pseudo code is -- Create a coroutine with infinite loop that check if gg.isVisible(true) then os.exit -- everytime you call gg.searchNumber make sure to resume the coroutine first then after the search in ended make sure to yield the coroutine but i got one problem, my coroutine is getting killed i dont know why script.lua
-
I have still not tested but i was thinking about creating a wrappers function for searchNumber, that when called call the coroutine that will run an infinite loop and checking for GG UI icon pressed, if true the os.exit. Note : coroutine is asynchronous mean it run in another thread without interupting the main thread Wow tested actually working
-
This would be possible if @Enyby add the Coroutine library that permit to run asynchronous code. I know some m***ed gg that people have implemented that lib you can dm me if you want to know more