D3D Hack
&
How To Make IT BY VB
----------------------------------------------
D3d Source Code
HotKeys
Code:
Private Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal vkey As System.Int16) As Int16
Code:
Dim StopHotKey As Integer
StopHotKey = GetAsyncKeyState(Keys.B)
If StopHotKey <> 0 Then
End If
Show In Game (Type It in Form1)
Code:
Try
Interaction.AppActivate("crossfire.bin")
Me.TopMost = True
Catch
Me.TopMost = True
End Try
Hide And Show
Code:
Dim StopHotKey As Integer
StopHotKey = GetAsyncKeyState(Keys.End)
If StopHotKey <> 0 Then
Application.Exit()
End If
Dim StopHotKeys As Integer
StopHotKeys = GetAsyncKeyState(Keys.Delete)
If StopHotKeys <> 0 Then
Me.Hide()
End If
Dim StopHotKeysa As Integer
StopHotKeysa = GetAsyncKeyState(Keys.Insert)
If StopHotKeysa <> 0 Then
Me.Show()
End If
------------------------------------------------------
Video How TO make It
How To Make D3d Menu - YouTube
----------------------------------------------------
Download Link Of D3d Hack
Simple D3d Hack.exe download - 2shared
--------------------------------------------------
i wish it fixed If I helped press thanks






