Jump to content

MAARS

Contributor
  • Posts

    680
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by MAARS

  1. 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
  2. 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
  3. Possible
  4. 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
  5. Hello i am from the future
  6. Try unknown search, or encrypted
  7. 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
  8. 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"; }
  9. 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.
  10. 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
  11. arm converter
  12. 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
  13. MAARS

    script

    declare FuncValue as a function, local function FuncValue (...) -- end
  14. 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
  15. 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
  16. 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
  17. MAARS

    What does this button do?

    It automatically propose a group size if your using a group search
  18. View File hex converter Convert : hexadecimal <==> decimal Submitter MAARS Submitted 08/07/2021 Category Tools  
  19. MAARS

    hex converter

    Version 1.0.0

    1,050 downloads

    Convert : hexadecimal <==> decimal
  20. MAARS

    copy value

    Solutions: script.lua
  21. thank you
  22. MAARS

    copy value

    yes i am french, send your script
  23. MAARS

    copy value

    So if i understand well your algorithm looks like this 1- Search gems value and save 2- use gems value in search to get coins value It is that ? and one thing when i give a piece of code this one just represent the logic, you need to adapt it on your need before integrating it in your code
  24. @Sysadmin I just noticed that the code block tool have been removed, i can not type highlighted code anymore
×
×
  • 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.