Jump to content

MAARS

Contributor
  • Posts

    664
  • Joined

  • Last visited

  • Days Won

    26

Posts posted by MAARS

  1. I understand but, first a got I question do you thank that Lua implementation will work in the same way on Android and IOS I am curious about that.

    To ping someone just tap "@" plus is name he will get notified, or even better dm him

  2. 9 hours ago, hoangninyb said:

     

    I know what you mean! but i have no knowledge about java/smali. Where can I see instructions?

    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

  3. 12 hours ago, Yuukis said:

    Using an FTP Server requires internet

    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

    8 hours ago, hoangninyb said:

    when the user logs in, the information in the previously saved file will be sent to the database and compared by php

    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

  4. @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

  5. 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

    Screenshot_20210928-060936_Chrome_Dev.jpg

  6. 8 hours ago, J1Re1d said:

    hello, i need to edit the value of life, which would be: "100", but when i edit, every time i update my life back to the damage i suffered, i tried to freeze too but it didn't work, my life kept falling. 

    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

  7. 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";
    }

     

  8. 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.

  9. 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

  10. 29 minutes ago, AKidWithMidgetFriend said:

    Think this line might also be a problem... When the whole script is ran the error returned isUntitled32_20210812101903.thumb.png.1ae6e51a2992227dec09b300f1b6764c.png

    Try  v

     

    declare FuncValue as a function,

    local function FuncValue (...)
      --
    end

     

  11. who the f*ck use underscore as a variable name ☹️

    2 hours ago, blocx said:

    i do not precise script wont launch

    You seem to be interested in scripting, if you're, learn lua all of these will be clear for you

×
×
  • 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.