Jump to content
  • 0

How to use online device IMEI?


zynos

Question

Hi!

What I want is to store fake imei in pastebin row and script check if the imei is the same as on the paste bin then can run

Without using phone imei

 

function ST_CHECK()
local isAuthorized=false
local link="link" 
local revo = revo or gg
local currentID=XX
if not(currentID) then
while(true) do
gg.alert("Invalid ANDROID ID")
end
end
local RequestResponse = gg.makeRequest(link).content
if not(RequestResponse) then
while(true) do
print("Check your internet connection")
os.exit()
end
end
for ID in (RequestResponse.."\n"):gmatch("(.-)\n") do
if ID == currentID then
isAuthorized=true
break
end
end
if not(isAuthorized) then
while(true) do
print("Unauthorized User")
os.exit()
end
end
end
checkID()

This is an exemple, i don't want to use phone imei just store a fake imei i pastebin and ask script to check it , if it is the same as on the script 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Something like this

 

V = gg.makeRequest('https://luagameguardian.com/vikari/checkIpAddress.php').content 
 
if V == "17288.899.90"  
or V == "123.568.69" 
or V == "5625.6872" 
then 
gg.alert("✅IP Correct") 
--Script 
else 
gg.alert("Your IP : "..V.." \n❌IP Not Correct") 
return 
end

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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