• 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 | VB6

Status
Not open for further replies.

-=XakSer

Leech
User
Joined
Nov 7, 2015
Messages
72
Reputation
0
Reaction score
1,116
Points
133
Credits
0
‎9 Years of Service‎
72%
[HIDE-THANKS]

Code:
>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
Code:
>If AntiEmulator = True Then End
[/HIDE-THANKS]

 
Re: Anti-Emulator | VB6

I posted this code time ago:

This link is hidden for visitors. Please Log in or register now.


Difference you say how to use :)

 
Status
Not open for further replies.
Back
Top