일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- EnvDiv
- EnvSet
- SetControlDelay
- IfInString
- 식의 설명
- Menu
- IfWinExist
- SetTitleMatchMode
- 함수
- autohotkey
- 배열
- SetKeyDelay
- ControlSend
- Blocks
- EnvSub
- API
- Threads
- SetMouseDelay
- IF (식)
- MouseClick
- SetEnv
- if(식)
- EnvAdd
- Var:=식
- ControlGetText
- StringGetPos
- if
- 식
- DetectHiddenWindows
- EnvMult
- Today
- Total
목록AUTOHOTKEY (437)
ㄴrㅎnㅂrㄹrㄱi
대단히 유용한 프로그램입니다. 사용하면 할수록 느껴지는 치엔의 매력….
Cheat Engine 5.4 ( http://cheatengine.org/download.php) 치엔은 게임 크랙하는 사람들에겐 이미 잘 알려진 프로그램으로. 메모리 상에 실행중인 프로그램을 불러와 해당 프로세스를 컨트롤 하는 프로그램입니다. 일단 테스트는 윈도우에서 기본 게임으로 제공되는 지뢰찾기를 사용하였는데, 지뢰찾기가 수행되는 동안 시간이 흘러가는데 시간에 대한 값이 들어있는 메모리 값을 원하는 값으로 조작하는 것이 목적이 되겠다. 1) 먼저 게임을 실행 2) 그리고 cheat engine을 실행하여 해당 프로세스를 attach 3) 이제 게임을 시작하여 한번 시간을 흘려보내 본다. 그리고 다가올 특정 시간을 value 에 집어 넣어 두고, 게임의 시각이 해당 value 와 일치되자마자 그 순..
Cheat Engine's - Source Codes Revolution Engine 9.2 - By ShaK3 http://rapidshare.com/files/70456979...ET_.rar. html Password: RevolutionX Revolution Engine 9.2 - By ShaK3 - Modified By .Shaka http://www.hotlinkfiles.com/files/68...akaVersion.rar Noob Legend Engine - By Shimmy http://www.sendspace.com/file/zd629y Zenos Engine 1.6 - By Zenos http://rapidshare.com/files/80193009...an157.zip.html Ze..
;---------------------------------------------------------------------------- ; MiniTool ;---------------------------------------------------------------------------- ; Developed : Choi Ho Sung, nimto@naver.com ; Copyright : nimto (c)2005 All rights reserved. ;---------------------------------------------------------------------------- ; Ver 0.1 2007-01-01 ;--------------------------------------..
오토핫키로 만든 자동등록 확인하기 ; Captcha example by Titan Gui, + ToolWindow Gui, Add, Text, x10 y10 w75, Enter the code: Pass := Captcha(90, 10) Gui, Add, Edit, vInput x90 y50 w50 Gui, Add, Button, gGo default x145 y50 h20, Enter Gui, Show, , Captcha Return Go: Gui, Submit, NoHide If Input != % Pass MsgBox, 16, Error, You didnt enter the code correctly!`n`nThe code was: %Pass% else MsgBox, 64, Cool, done!`n..
HTMLText - Write HTML style text to a gui 사용예제 : HTMLText(x, y, Text, Gui)소스 : Text := "This text can have bold or non-bold text. It's easy peasy!" HTMLText(10, 10, Text) Gui, 1: Show, AutoSize Return HTMLText(x, y, Text, Gui=1) { Loop { Gui, Font Pos := RegExMatch( Text, "(.+?)", Bold, 1) If SubStr( Text, 1, Pos-1) { If !Started { If Pos Gui, %Gui%: Add, Text, x%x% y%y%, % SubStr( Text, 1, Pos-..
TextToImage 1.07 - Write text onto an image or screenshot #NoEnv #SingleInstance, Force SetWorkingDir %A_ScriptDir% #Include, TextToImage-1.07.ahk Gui, 1: Add, Text, x10 y10 w300 r1 - Multi - Wrap, In parameter ( Screen, Window or image location): Gui, 1: Add, Edit, x10 y+10 w300 r1 - Multi - Wrap vIn, Screen Gui, 1: Add, Text, x10 y+10 w300 r1 - Multi - Wrap, Text to write: Gui, 1: Add, Edit, x..
AHK Chat (Another Method) AHK #Persistent start: Gui, Add, Edit, x76 y10 w100 h20 vusername , Gui, Add, Text, x6 y10 w70 h20 , User Name: Gui, Add, Button, x43 y40 w100 h30 glogin +default, Login Gui, Show, h83 w188, Login Return login: gui submit gui destroy URLDownloadToFile, http://jon2s.com/ahkchat/chat.php?event=login&loggedusername=%username%, %A_Temp%\login.txt FileReadLine, loginresult, ..