Keşke hangi dille kodladığını yazsaydın. Ben vb olduğunu düşünüyorum.
İnternette araştırsan aslında bulurdun ( zaten kod basit biraz kodlama bilgin varsa anlarsın, ampül yanar
)
Public in altına bunu yaz :
VB.Net:
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Sonra
name i d3d olan bir label oluştur.
Timer ekle ve timer a bu kodları yapıştır :
VB.Net:
'Wolftu yu degistermeyi unutma!!!
'interval ini 1 yapabilirsin istersen timer ın
Dim game As Process() = Process.GetProcessesByName("wolftü.bin")
On Error Resume Next
If GetAsyncKeyState(Keys.Insert) = -32767 Then
If d3d.Visible = False Then
d3d.Visible = True
SuspendProcess(game(0))
Me.Show()
Exit Sub
End If
If d3d.Visible = True Then
d3d.Visible = False
ResumeProcess(game(0))
Me.Hide()
Exit Sub
End If
End If