
MAARS
Contributor-
Posts
680 -
Joined
-
Last visited
-
Days Won
28
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MAARS
-
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
-
Hum are you sure modern app and online app are not bullet proof to this ?
-
When the app have multiple ABI it is always bundled In the same app, you will not be able to find the app with only specific ABI that you want. So that that brings us to how android app behave. Any edit break the signature. Even if you just edit the extension of the apk from apk to zip or anything else bOOm signature broken. So deleting unwanted ABI folder from the app will also break the signature
-
This is adb command, you will not be able to use it with native package manager of android This is nice but since some app got signature verification it can be difficult de kill it. and also if he want to use google play service this is not a good idea
-
Install GG to a virtual and remove gg from your phone + allow GG to use root in virtual. You should be good to go
-
Nevermind i undertand now
-
Normaly when you call gg.editAll values are set automaticaly right ? I dont understand why you call gg.setValues in another function, can you explain ?
-
Can you explain more, it is a litle bit confusing for me.
-
Nope x64 can be a x86 chip not only ARM
-
Snapdragon is not an architecture it is just a name for a Chip. Arch are these: arm, arm64, x86, and x86_64. ARM and x86 are for 32-bit processors, while arm64 and x86_64 are for 64-bit processors (source). The game under the hood can be designed very differently on 32bit chip because of it limitations. And note that you can have a 64bit arch cpu but if your firmware is 32bit you will be running only 32bit games/apps. so run this app on both phone to check your architecture
-
What about the architecture ? Are both build in the same architecture ?
-
-
1
-
Are those two phones sharing the same game version ?, Are those two using the same architecture ?
-
Nice approach by converting the value to hex, really genius
-
So actually you need to convert it to binary first the method is quit clear here https://stackoverflow.com/questions/54718064/how-to-convert-manualy-hexadecimal-to-decimal-with-twos-complement If you can't implement it in Lua then tell me I will do
-
But signed integer allow you to represent both, negative and positive number ? Why would you want only positive number ?
-
string.format always return a string, if you have formated your integer as hexadecimal If you want to retrieve is value as Integer then use the function tonumber and second argument as 16