겜_ㅋㅋ2021. 2. 18. 11:08

 

Path_Of_Exile_Potion.ahk
다운로드
AutoHotkey_1.1.33.02_setup.exe
다운로드
Path_Of_Exile_Potion.exe
1.06MB

 

소스 복사/붙여넣기 후 마우스 우클릭에서 관리자 권한 실행-> 원하는 핫키 지정 후 적용버튼 클릭

(키지정 입력란이 비활성화 되면 적용된 것임) 닫기 누르면 그냥 종료 됨

 

;==================소스=================

SendMode Input

SetWorkingDir %A_ScriptDir%

configFile = Path_Of_Exile_Potion.config

if FileExist(configFile) {

file := FileOpen(configFile, "r")

fileContents := file.Read()

fileContentsSplitted := StrSplit(fileContents, "`n")

userHotkey := fileContentsSplitted[1]

userMacro := fileContentsSplitted[2]

file.Close()

} else {

userHotkey := 1

userMacro := 12345

}

Gui, Add, Text,, 핫키 :

Gui, Add, Hotkey, vhot1, %userHotkey%

Gui, Add, Text,, 입력 매크로 :

Gui, Add, Edit, vedit1 w135, %userMacro%

Gui, Add, Button, gbtn, 적용

Gui, Submit, Nohide

Gui, -MaximizeBox -MinimizeBox

Gui, show, W175

enable := false

Return

 

btn:

Gui, Submit, Nohide

if enable {

enable := false

Hotkey, $%hot1%, hotkey1, off

GuiControl, Enabled, hot1

GuiControl, Enabled, edit1

GuiControl,, btn, 적용

}

else {

enable := true

Hotkey, $%hot1%, hotkey1, on

GuiControl, Disabled, hot1

GuiControl, Disabled, edit1

GuiControl,, btn, 해제

 

}

Gui, Submit, Nohide

Return

 

hotkey1:

SendWithRandDelay(edit1)

return

 

SendWithRandDelay(str) {

strSplitted := StrSplit(str)

For i, c in strSplitted {

Random, rand, 5, 15

SendInput %c%

Sleep rand

}

}

 

GuiClose:

Gui, Submit, Nohide

userHotkey := hot1

userMacro := edit1

file := FileOpen(configFile, "w")

file.WriteLine(userHotkey)

file.Write(userMacro)

file.Close()

ExitApp

'겜_ㅋㅋ' 카테고리의 다른 글

대항해시대 온라인 네비 Ver.13.26  (0) 2015.09.19
와우 대격변용 자동낚시  (0) 2014.03.15
와우 프리서버 카인대격변  (0) 2014.02.22
Posted by beingmania
겜_ㅋㅋ2015. 9. 19. 09:39

대항해시대 온라인 네비게이션(DHO Agent)


백업용


자료출처 : http://blog.naver.com/sjuly717/220371663267  - 헬레네 서버 FiveStarStory



DHOAgent_FSSNaviver13.26.zip


'겜_ㅋㅋ' 카테고리의 다른 글

POE 플라스크 매크로_GUI  (0) 2021.02.18
와우 대격변용 자동낚시  (0) 2014.03.15
와우 프리서버 카인대격변  (0) 2014.02.22
Posted by beingmania
겜_ㅋㅋ2014. 3. 15. 08:58

와우 대격변용 자동낚시

mrfishit_4.4.3.zip


'겜_ㅋㅋ' 카테고리의 다른 글

POE 플라스크 매크로_GUI  (0) 2021.02.18
대항해시대 온라인 네비 Ver.13.26  (0) 2015.09.19
와우 프리서버 카인대격변  (0) 2014.02.22
Posted by beingmania
겜_ㅋㅋ2014. 2. 22. 21:53


http://wowss.raonnet.com/  



느낌상 놀자는 아니고 반하자 같은...(약간의 노력이)


퀘스트 안되는거 굳이 할려고 노력하지 말자...


80부터 시작이지만 85까졍 열심히 해야함.ㅋㅋㅋ


개인적으로 서버가 오래갔으면...


국내 프리섭은 몽이가 젤 오래 갔는데...















'겜_ㅋㅋ' 카테고리의 다른 글

POE 플라스크 매크로_GUI  (0) 2021.02.18
대항해시대 온라인 네비 Ver.13.26  (0) 2015.09.19
와우 대격변용 자동낚시  (0) 2014.03.15
Posted by beingmania