엄밀하게 말하자면 WOW 외부 프로그램을 이용해서 게임상에서 의도하는 동작을 바꾸기 때문에 게임사가 만들어둔 약관에 위배되는 스크립트입니다. 충분히 주지하시고 사용하세요.
※ 그래도 꼭 써야할 분들은 있겠죠... ^^;;
; AutoHotkey Script
; WOW Logout Prevention Script v0.1
#z::
Run http://wow.inven.co.kr
WOWLogoutPrevention=0
+^!p::
If (WOWLogoutPrevention==0) {
SetTimer,WOWLogoutPreventionActionType2,3000
WOWLogoutPrevention=1
} else {
SetTimer,WOWLogoutPreventionActionType2,Off
MsgBox,WOW Logout Prevention
WOWLogoutPrevention=0
}
return
WOWLogoutPreventionActionType1:
SetTitleMatchMode,1
If WinExist("월드 오브 워크래프트")
{
WinActivate
SendInput {Enter}
Send /g WOW Logout Prevention
SendInput {Enter}
}
else
{
MsgBox, WOW Client is not running.
}
return
WOWLogoutPreventionActionType2:
SetTitleMatchMode,1
If WinExist("월드 오브 워크래프트")
{
WinActivate
SendInput {Space}
}
else
{
MsgBox, WOW Client is not running.
}
return