Jump to content
  • 0

About the functions provided by gameguardian


fateonlyzero

Question

6 answers to this question

Recommended Posts

Posted

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.

Posted
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.

Posted

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

Posted
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?

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.