'created By : R. Krisna Indrawan
Private resmue As String
Private winHwnd As Long
Private bSuspend As Boolean
Private Sub cmdExecute_Click()
resmue = "yes"
Unload Me
OpenURL "http://www.facebook.com/RadenKrisnaIndrawan/", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisna.i", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisnaindrawan", Me.hwnd 'Bisa Kalian Ganti
End Sub
Private Sub Cmdexit_Click()
Unload Me
OpenURL "http://www.facebook.com/RadenKrisnaIndrawan/", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisna.i", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisnaindrawan", Me.hwnd 'Bisa Kalian Ganti
End Sub
Private Sub cmdInjector_Click()
On Error GoTo errLine
If Not cmdInjector.Caption = "Inject Now" Then
Dim theTemp As String
theTemp = OpenDialog(Me, "DLL files (*.dll)|*.dll", "Select DLL File For Inject...", App.Path)
If Trim$(theTemp) <> "" Then
If Dir$(theTemp) <> "" Then
sFlDLL = theTemp
cmdInjector.Caption = "Inject Now"
Else
sFlDLL = "None"
cmdInjector.Caption = "Select DLL For Inject"
End If
End If
Else
If sFlDLL = "None" Then
MsgBox "You can't Injector execute", 48, "Error Injector"
Exit Sub
Else
InjectExecute sFlDLL
sFlDLL = "None"
cmdInjector.Caption = "Select DLL For Inject"
End If
End If
Exit Sub
errLine:
MsgBox "File tidak respon atau tidak support", 48, "R Krisna Indrawan"
End Sub
Private Sub cmdTerminate_Click()
resmue = "yes"
On Error Resume Next
Dim lExitCode As Long
If MsgBox("Terminate Hackshield sekarang?", _
vbYesNo + vbExclamation, "Terminate Proses") = vbYes Then
lExitCode = TerminateTargetOne
If lExitCode = 0 Then
MsgBox "Proses terminate gagal.", _
vbExclamation, "Terminate info"
cmdTerminate.Enabled = False
Else
lExitCode = TerminateTargetTwo
If lExitCode = 0 Then
MsgBox "Proses terminate sukses.", _
vbExclamation, "Terminate info"
Else
Unload Me
OpenURL "http://www.facebook.com/RadenKrisnaIndrawan/", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisna.i", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisnaindrawan", Me.hwnd 'Bisa Kalian Ganti
End If
End If
End If
End Sub
Private Sub Form_Load()
bSuspend = False
Me.Left = (Screen.Width - Width) / 2
' Me.Top = -1000
Timer2.Interval = 20
Timer2.Enabled = True
FileTargetOne = "PointBlank.exe"
FileTargetTwo = "HSUpdate.exe"
MsgBox "Welcome To Dunia Cheater", vbInformation, "R Krisna Indrawan" 'Bisa Kalian Ganti
MsgBox "All Credit By : R Krisna Indrawan Starr Jr.", vbInformation, "R Krisna Indrawan" 'Bisa Kalian Ganti
MsgBox "Spesial Thanks To : D'DarknessCyberSecret And TamBoreS Of Dragon™", vbInformation, "R Krisna Indrawan" 'Bisa Kalian Ganti
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Screen.MousePointer = vbDefault
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
OpenURL "http://www.facebook.com/RadenKrisnaIndrawan/", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisna.i", Me.hwnd 'Bisa Kalian Ganti
OpenURL "http://www.facebook.com/r.krisnaindrawan", Me.hwnd 'Bisa Kalian Ganti
If bSuspend = True Then
If Not resmue = "yes" Then
If MsgBox("Klik Yes untuk Terminate (PB dan HS) dan No Untuk Membatalkan", vbYesNo, "") = vbYes Then
cmdTerminate_Click
Else
Cancel = -1
End If
Else
End If
End If
End Sub
Private Sub Form_Unload(Cancel As Integer)
If bSuspend = True Then SetSuspendResumeThread False
End
End Sub
Private Sub Timer1_Timer()
winHwnd = FindWindow(vbNullString, "HSUpdate")
If winHwnd <> 0 Then
NTProcessList
SetSuspendResumeThread True
cmdTerminate.Enabled = True
cmdExecute.Enabled = True
cmdInjector.Enabled = True
'pengaturan tombol jadi aktif
Command1.Enabled = True
Command2.Enabled = True
bSuspend = True
Vibrate Me, 100, 20
MoveToTop
Timer1.Enabled = False
Else
cmdTerminate.Enabled = False
cmdExecute.Enabled = False
cmdInjector.Enabled = False
'-------------------------
'pengaturan tombol jadi tidak aktif
Command1.Enabled = False
Command2.Enabled = False
Timer1.Enabled = True
bSuspend = False
End If
End Sub
Private Sub Timer2_Timer()
Me.Top = (Screen.Height - Height) / 2
Timer2.Enabled = False
Timer1.Enabled = True
Timer1.Interval = 20
End Sub
Sub SlideWindow(frmSlide As Form, iSpeed As Integer)
While frmSlide.Top - frmSlide.Height < Screen.Height
DoEvents
frmSlide.Top = frmSlide.Top + iSpeed
Wend
End Sub
Private Sub MoveToTop()
Dim currentTop As Long
Dim TargetTop As Long
Dim currentLeft As Long
Dim TargetLeft As Long
Dim i As Long
currentTop = Me.Top
TargetTop = (Screen.Height - Height) / 50
For i = currentTop To TargetTop Step -2
Me.Top = i
Next i
currentLeft = Me.Left
TargetLeft = (Screen.Width - Me.Width) - 100
For i = currentLeft To TargetLeft Step 2
Me.Left = i
Next i
End Sub
Private Sub Vibrate(Frm As Form, rScale As Integer, Times As Integer)
Dim Lft As Long, Tp As Long
Dim i
Lft = Frm.Left
Tp = Frm.Top
For i = 1 To Times
Frm.Move Lft + Sgn(rScale)
Pause 20
Frm.Move Lft + rScale
Pause 20
Frm.Move Lft, Tp + Sgn(rScale), Frm.Width, Frm.Height
Pause 20
Frm.Move Lft, Tp + rScale, Frm.Width, Frm.Height
Pause 20
Next i
End Sub
Private Sub Pause(ms)
Dim secs
Dim G
secs = ms / 1000
G = Timer
Do While Timer - G < secs
DoEvents
Loop
End Sub