• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Visual Basic Anti Emulator

Status
Not open for further replies.

top10

Moderator
User
Joined
Mar 18, 2015
Messages
487
Reputation
0
Reaction score
5,047
Points
243
Credits
0
‎10 Years of Service‎
70%
[HIDE-THANKS][LENGUAJE=VB]Private Declare Sub Sleep Lib "kernel32" (ByVal lngMilliseconds As Long)

Private Declare Function GetTickCount Lib "kernel32" () As Long

Public Function AntiEmulator() As Boolean

Dim TimeNow As Long

Dim TimeAfterSleep As Long

TimeNow = GetTickCount

Sleep 500

TimeAfterSleep = GetTickCount

If TimeAfterSleep - TimeNow < 500 Then

AntiEmulator = True

Else

AntiEmulator = False

End If

End Function[/LENGUAJE][/HIDE-THANKS]

 
Re: Anti Emulator

hmmm how it works? just check the time it takes to run?¿

 
Re: Anti Emulator

yes,some emulators freeze the time and this checks if time is running,if the time is not runnig is that is an emulator,regards

 
Status
Not open for further replies.
Back
Top