Jump to content

MAARS

Contributor
  • Posts

    680
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by MAARS

  1. MAARS

    Arm64x To Arm32x

    And dont forget to sign the app again before installing if you are not rooted. you can use SAI
  2. MAARS

    Arm64x To Arm32x

    Bye bye Google play services
  3. 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
  4. 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)
  5. 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
  6. 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
  7. 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
  8. MAARS

    Arm64x To Arm32x

    Hum are you sure modern app and online app are not bullet proof to this ?
  9. MAARS

    Arm64x To Arm32x

    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
  10. MAARS

    Arm64x To Arm32x

    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
  11. MAARS

    LIAPP ALERT

    Better use vxPosed
  12. MAARS

    LIAPP ALERT

    Install GG to a virtual and remove gg from your phone + allow GG to use root in virtual. You should be good to go
  13. Nevermind i undertand now
  14. 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 ?
  15. Can you explain more, it is a litle bit confusing for me.
  16. MAARS

    CLASS NAME

    Nope x64 can be a x86 chip not only ARM
  17. MAARS

    CLASS NAME

    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
  18. MAARS

    CLASS NAME

    What about the architecture ? Are both build in the same architecture ?
    Good ideas I tried to optimize it local function addstring (separator, ...) return table.concat({...}, separator or "") end local r = addstring (nil, 'hello', 'world') local y = addstring ("; ", 'hello', 'world') print (r) print (y)
  19. MAARS

    CLASS NAME

    Are those two phones sharing the same game version ?, Are those two using the same architecture ?
  20. Nice approach by converting the value to hex, really genius
  21. 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
  22. But signed integer allow you to represent both, negative and positive number ? Why would you want only positive number ?
  23. 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
×
×
  • 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.