fateonlyzero Posted April 21, 2019 Posted April 21, 2019 Is there a function in gameguardian that can read the phone model code? It is similar to the machine code that reads the computer.
Administrators Enyby Posted April 21, 2019 Administrators Posted April 21, 2019 No such function in GG Lua API.
saiaapiz Posted April 21, 2019 Posted April 21, 2019 There is no such function or API in GG that allowed what you mention above. But there still a way that will do similar action. Like reading a device id from game memory.
bukandewa Posted April 21, 2019 Posted April 21, 2019 1 hour ago, fateonlyzero said: Is there a function in gameguardian that can read the phone model code? It is similar to the machine code that reads the computer. path = io.open('/system/build.prop', 'r') readID = path:read('*a') regID = '0x7e8fe762351230886d9c3d5801a159bda4475bb6000000000000000000000000' checkID = readID:match('recovery%_id='..regID) --if nil then do action print(checkID) print(regID) Check your build.prop. There is a lot of information about your device.
fateonlyzero Posted April 21, 2019 Author Posted April 21, 2019 ok thanks [added 4 minutes later] 2 hours ago, bukandewa said: path = io.open('/system/build.prop', 'r') readID = path:read('*a') regID = '0x7e8fe762351230886d9c3d5801a159bda4475bb6000000000000000000000000' checkID = readID:match('recovery%_id='..regID) --if nil then do action print(checkID) print(regID) Check your build.prop. There is a lot of information about your device. i don't find build.prop
fateonlyzero Posted April 21, 2019 Author Posted April 21, 2019 9 hours ago, bukandewa said: path = io.open('/system/build.prop', 'r') readID = path:read('*a') regID = '0x7e8fe762351230886d9c3d5801a159bda4475bb6000000000000000000000000' checkID = readID:match('recovery%_id='..regID) --if nil then do action print(checkID) print(regID) Check your build.prop. There is a lot of information about your device. how to read build.prop without root?
Mofo50 Posted April 23, 2019 Posted April 23, 2019 On 4/21/2019 at 11:03 PM, fateonlyzero said: how to read build.prop without root? Impossible
Question
fateonlyzero
Is there a function in gameguardian that can read the phone model code? It is similar to the machine code that reads the computer.
6 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.