-
Content Count
69 -
Donations
$0.00 -
Joined
-
Last visited
-
Days Won
1
ATP-RAY2OP last won the day on April 27 2020
ATP-RAY2OP had the most liked content!
Community Reputation
23 LearningAbout ATP-RAY2OP
-
Rank
Advanced Member
Additional Information
-
Android
9.x (Pie)
-
Device
Redmi note 5 pro
-
Service provider
Other
Recent Profile Visitors
6,168 profile views
-
ADD EXPIRY DATE IN SCRIPT (cannot be bypassed by changing device date)
ATP-RAY2OP replied to ATP-RAY2OP's topic in Tutorials
I use your encryption only -
It should be r[1].value
-
-
-
Fuzzy search
-
For offline games use lucky patcher, gameguardian cannot do it
-
Would recommend you to learn some lua basics first, because gameguardian scripts are lua based
-
gg.prompt is your answer, search for how to use gg.prompt
-
ADD EXPIRY DATE IN SCRIPT (cannot be bypassed by changing device date)
ATP-RAY2OP replied to ATP-RAY2OP's topic in Tutorials
Well no script is safe, but it prevents the most usual way to bypass expiry that is to change date of device. For normal users binary script itself is tough job -
ADD EXPIRY DATE IN SCRIPT (cannot be bypassed by changing device date)
ATP-RAY2OP replied to ATP-RAY2OP's topic in Tutorials
Wonderful -
There are 2 methods to put script expiry 1st is os.clock() method to get current date of device, it is offline so can be easily bypassed by changing device date. 2nd my method is online method using html date header, it cannot be bypassed Put the following code at top of your script (and change expiry date) Date=15 -- Expiry date Month=5 -- Expiry month Year=2020 -- Expiry year expiremessage="Script has expired. New version available" --Expiry message --This script will expire on 15/05/2020 --Do not change below code function check(t) if t<10 then t="0"..t end return t end expiredate=Year.. check(Month).. check(Date) date=gg.makeRequest("http://www.guimp.com").headers["Date" ][1] --guimp.com is smallest webpage so takes less time for loading month={"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"} for i=1,12 do if month[i]==string.sub(date,9, 11) then if i<10 then i="0"..i end currentdate=string.sub(date,13, 16)..i..string.sub(date,6, 7) end end if tonumber(currentdate)>=tonumber(expiredate) then gg.alert(expiremessage) os.exit() end -- Your script code below
-
Well for that you will need to make script yourself to check values at regular interval
-
Use fuzzy search first, to narrow down search results, then freeze values one by one and check their effect on game