Forma Eklenecekler
1 Adet Timer
Formu Kafanıza Göre Süsleyin
Forma Çift Tıklayın ve CTRL+A Yapıp Hepsini Silin ve Bu Kodu
memoryhackers.org Farkı
Kod:
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