Guest User

Anti-Speed Hack (Cheat Engine)

a guest
Jul 22nd, 2010
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ' ###################################################################################
  2. '
  3. ' mAntiSH
  4. ' Description: This is a basic module which detects speed hack library if its injected
  5. ' to our application.
  6. ' Coded by LeadMX
  7. ' Website: hackhound.org
  8. ' Special Thanks To: the unXplained, Mus7afa, Viotto, omc, steve10120
  9. ' Email: leadmx@yahoo.com
  10. ' MSN: leadmx_msn@hotmail.com
  11. '
  12. ' ###################################################################################
  13.  
  14. Public Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long
  15.  
  16. Public Function IsSHInjected() As Boolean
  17.  If Not GetModuleHandle("speedhack.dll") = 0 Then ' Check if speedhack.dll is loaded
  18.  IsSHInjected = True ' If its loaded, we will return True value
  19. Else
  20.   IsSHInjected = False ' If its not loaded, we will return False value
  21. End If
  22. End Function
Add Comment
Please, Sign In to add comment