;
; AutoHotkey Version: 1.x
; Language: English
; Author: InP_Titan
; Website: www.MPGH.net
; To : MPGH
;
SetTitleMatchMode, 3
#IfWinActive, Point Blank
#SingleInstance force
#NoEnv
#Persistent
SplashTextOn ,200 ,70 ,, MPGH InP_Titan Exploit`nwww.MPGH.net
Sleep, 5000
SplashTextOff
Run www.MPGH.net
SetTimer, Idle, 1
return
Idle:
IfWinActive, Point Blank
if (A_TimeIdlePhysical > 10000)
SendInput {Up Down}
Sleep, 1000
SendInput {Up Up}
Sleep, 5000
return
Insert::
Hotkey, $~*LButton, toggle
If toggle != 1
{
toggle := 1
SoundPlay *16
ToolTip,OFF, 5, 5
SetTimer, RemoveToolTip, 200
return
RemoveToolTip:
SetTimer, RemoveToolTip, Off
ToolTip
return
}
else
{
toggle := 0
SoundPlay *-1
ToolTip,ON, 5, 5
SetTimer, RemoveToolTip, 200
}
_auto := true
$~*LButton::autofire()
autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
SendInput {LButton Down}
Sleep, 50
mouseXY(0,0)
SendInput {LButton Up}
Sleep, 1
}
else
break
}
}
}
mouseXY(x,y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}
return
;;;;;;
; End Script

