Search the Community
Showing results for tags 'script expire'.
-
Version 1.0.0
7,654 downloads
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ About About About About About About About ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Greetings, great hackers. Today I created my own cheat for the Slither.io game, with which it is very easy to play. You can both remove enemy collisions and control their size. You can magnetize opponents to yourself using one of the script functions. At the moment there are only three functions, but for the script to develop further, we need to know what you think of this file! ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 4 comments
-
2
-
- Slither.io
- Slither.io script
-
(and 45 more)
Tagged with:
- Slither.io
- Slither.io script
- Hack script
- Hack
- hacks
- hack!
- Hacké
- Hacked
- Hacker
- HACKET
- HACK CF
- Hack Ex
- hackear
- hackers
- Hacking
- HackLife
- Hack LOL
- HackReal
- hacks :D
- Hack fly
- Hackgame
- hack apk
- Hack star
- Script
- Scripts
- ScriptGOB
- Scripting
- ScriptLang
- scriptpubg
- Script Lua
- Script FRAG
- script hack
- Script Help
- Script pubg
- Script crash
- Script darzas
- Script creat
- Script decode
- script expire
- Scriptluapubg
- Scriptrestart
- Scriptscaroom
- ScriptTrust
- Slither io
- Slitherio hack
- Slither io script
- slitherio scripts slitherio speed hack
-
View File Slither.Io Hack Script ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ About About About About About About About ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Greetings, great hackers. Today I created my own cheat for the Slither.io game, with which it is very easy to play. You can both remove enemy collisions and control their size. You can magnetize opponents to yourself using one of the script functions. At the moment there are only three functions, but for the script to develop further, we need to know what you think of this file! ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Submitter PublicHax Submitted 04/24/2021 Category LUA scripts
-
- Slither.io
- Slither.io script
-
(and 45 more)
Tagged with:
- Slither.io
- Slither.io script
- Hack script
- Hack
- hacks
- hack!
- Hacké
- Hacked
- Hacker
- HACKET
- HACK CF
- Hack Ex
- hackear
- hackers
- Hacking
- HackLife
- Hack LOL
- HackReal
- hacks :D
- Hack fly
- Hackgame
- hack apk
- Hack star
- Script
- Scripts
- ScriptGOB
- Scripting
- ScriptLang
- scriptpubg
- Script Lua
- Script FRAG
- script hack
- Script Help
- Script pubg
- Script crash
- Script darzas
- Script creat
- Script decode
- script expire
- Scriptluapubg
- Scriptrestart
- Scriptscaroom
- ScriptTrust
- Slither io
- Slitherio hack
- Slither io script
- slitherio scripts slitherio speed hack
-
ADD EXPIRY DATE IN SCRIPT (cannot be bypassed by changing device date)
Guest posted a topic in Tutorials
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