
MAARS
Contributor-
Posts
680 -
Joined
-
Last visited
-
Days Won
28
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by MAARS
-
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
-
@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
-
Possible
-
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
-
Hello i am from the future
-
Try unknown search, or encrypted
-
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
-
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"; }
-
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.
-
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
-
Verification code should always be on top of the script
-
declare FuncValue as a function, local function FuncValue (...) -- end
-
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
-
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
-
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
-
It automatically propose a group size if your using a group search
-
View File hex converter Convert : hexadecimal <==> decimal Submitter MAARS Submitted 08/07/2021 Category Tools
-
thank you
-
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
-
@Sysadmin I just noticed that the code block tool have been removed, i can not type highlighted code anymore