Jump to content

MAARS

Contributor
  • Posts

    667
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by MAARS

  1. Game guardian is not open source
  2. That method is sunch a basic one
  3. This post cannot be displayed because it is in a forum which requires at least 1 post to view.
  4. This is called reverse engineering, i tried to learn that a couple of time, but i give up, I Know this is not motivating but if you really want to do that then go for it. Search: Android Apps reverse engineering. On YouTube even on Google
  5. Yes but i think he is not making cheat for offline games ? so if the game is online, the is no problem to have online script also For that we use MySQL database, all of this is quite easy for me, but the only problem is to get the device id on the client side, if you get a method to get that i can write the whole app for you for free
  6. Android id on Android 10+ can not be accessed by 3rd party apps, if you really need that you will need some java/smali knowledge to add that function in **. you know what i mean
  7. That a really bad idea, never trust the client side, you cant save sensitive data in the client machine, get yourself a ftp server
  8. I dont know anything about encryption, but i know lua. so yes i think you can automatically encrypt a file all you need is the path to this file.
  9. To pause a function there is library in lua called coroutine that permit you to suspend your code and resume at anytime. but the actual version of gg do not include this library, you will need to find a moded gg that include it
  10. MAARS

    Script cheat

    @CmP answered well but notice that searching simply 17 can lead you to thousands of results and editing all those can make the crash, learn about group search to make your search more accurate
  11. Possible
  12. Hi @Sysadmin Hi have a request for the code block component, right now this component break word when the maximum width is reached, sometimes it can be challenging to read the code without copying the code to a text editor. So my proposition is to put overflow-x on scroll so there will be no break line on mobile devices
  13. Hello i am from the future
  14. Try unknown search, or encrypted
  15. That mean the value is protected, you need to find the real value, this one might be the value used to display on the screen, search for the real one
  16. MAARS

    script password

    just learn basic php <?php $model = "Here the dynamic device model name"; $devices = [ "SM-J600FN", "GT-4000MN", ]; /* Then you compare the device model that require the script with all device in your table */ $allowed = false; foreach ($devices as $device) { if ($device === $model) { $allowed = true; break; } } if ($allowed) { echo "Output the script"; } else { echo "Your device is not allowed"; }
  17. MAARS

    script password

    the script detect the phone model automaticaly all you need is to create a table with allowed device model then compare, if the device dont exist in the table then stop execution else output the script. all of this should be done in the server not in lua.
  18. MAARS

    script password

    There is many methods you can make this done, in my case i use php to lock the script in a specific device model but the cons is anyone with the same model can access the script. before we used android device id it was more secure and unique but android 10+ restricted external app for accessing device id and IMEI. for example of devices id lock check the script bellow it detects any device model using php script.lua
  19. arm converter
  20. MAARS

    gg verification

    Verification code should always be on top of the script
    Write your statement in multiple line, dont write your code inline, and get a better taste of image description the image should be a screenshot of your script
  21. MAARS

    script

    declare FuncValue as a function, local function FuncValue (...) -- end
  22. MAARS

    script

    who the f*ck use underscore as a variable name You seem to be interested in scripting, if you're, learn lua all of these will be clear for you
  23. MAARS

    What does this button do?

    size can not be under 5, the min size is 5, and you should not define the group size by yourself unless you know what you are doing, the group size are defined automatically when you create your group search by selecting multiple value in the memory editor
  24. MAARS

    What does this button do?

    It mean that he will not consider value that distance between them is out of the group size. eg: 200;300::9 the group size if 9, if he found results that distance is out of this max size he will ignore them
×
×
  • 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.