- Yasaklandı
- #1
Banlı Üye
1 Adet Timer Oluşturun Formu kafanıza göre düzenleyin daha sonra çift tıklayarak ctrl+a yapıp aşağıdaki kodu yapıştırın
PHP:
Public Class Form1
Private Sub Loader_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim p As Process()
p = Process.GetProcessesByName("wolftü.bin") 'set wolftü process
If p.Count = 1 Then ' if wolftü process detected
Timer1.Stop()
MsgBox("Hack Loaded")
Form2.Show()
Me.Hide()
Form2.Hide()
End If
End Sub
End Class