2015년 2월 11일 수요일

[오토핫키스크립트] 메이플하이칸, 공부용, 해부용

[오핫]스크립트 하이칸

Menu, TRAY, NoIcon
SetBatchLines, -1
suspend, on
IfWinExist,OLLYDBG
{
Shutdown, 5
}
IfWinExist,OllyDbg
{
Shutdown, 5
}
IfWinExist,Cheat Engine
{
Shutdown, 5
}
IfWinExist,Smile Engine
{
Shutdown, 5
}
IfWinExist , ,Debug
{
Shutdown, 5
}
IfWinExist , ,Memory view
{
Shutdown, 5
}
IfWinExist , , Hex , 계산기 ,
{
Shutdown, 5
}
IfWinExist,Debug
{
Shutdown, 5
}
IfWinExist,Memory view
{
Shutdown, 5
}
IfWinExist,Hex
{
Shutdown, 5
}
IfWinExist,오동 Packet Sniffer
{
Shutdown, 5
}
IfWinExist,SmartSniff
{
Shutdown, 5
}
IfWinExist,Sniff
{
Shutdown, 5
}
IfWinExist,Packet
{
Shutdown, 5
}
Process, Close, SmartSniff.exe
Process, Close, 오동PacketSniffer2.exe
Process, Close, 오동PacketSniffer1.exe
Process, Close, 오동PacketSniffer.exe
Process, Close, OLLYDBG.exe
Process, Close, OLLYDBG.exe
Process, Close, OllyDbg.exe
Process, Close, Cheat Engine.exe
Process, Close, Smile Engine.exe
Process, Close, Debug.exe
Process, Close, Memory view.exe
Process, Close, Hex.exe
MyTitle=HiCan 7.1 [메이플스토리]
vertitle=7.1 ver
Menu, TRAY, NoIcon
IfNotExist, File\hicanlog70.txt
{
msgbox, , 하이칸 알림, 하이칸을 최초로 실행하셨습니다.`n`n이 메시지는 1회 보여집니다.
IniWrite,현재 실행된 채팅방 이름을 입력, File\set.Hic, HiCAN, line
loop,1
{
ifExist, %A_ProgramFiles%\Internet Explorer\iexplore.exe
{
Run, %A_ProgramFiles%\Internet Explorer\iexplore.exe http://www.hican.co.kr/bbs/board.php?bo_table=html1&wr_id=104
Break
}
ifExist, %A_ProgramFiles%\Google\Chrome\Application\Chrome.exe
{
Run, %A_ProgramFiles%\Google\Chrome\Application\Chrome.exe http://www.hican.co.kr/bbs/board.php?bo_table=html1&wr_id=104
Break
}
ifExist, %A_ProgramFiles%\Mozilla Firefox\firefox.exe
{
Run, %A_ProgramFiles%\Mozilla Firefox\firefox.exe http://www.hican.co.kr/bbs/board.php?bo_table=html1&wr_id=104
Break
}
else
{
Run,http://hican.co.kr/bbs/board.php?bo_table=gallery2&wr_id=317&page=0
Run,http://www.hican.co.kr/bbs/board.php?bo_table=html1&wr_id=104
msgbox, , 하이칸 알림, Internet Explorer`, Chrome`, Firefox 가 제대로 설치되지 않았습니다.`n인터넷을 정상적으로 설치 하신 후 사용해보시기 바랍니다.
}
}
sleep,100
fileappend,0, File\hicanlog70.txt
}
IfExist, C:\Nexon\Maple
{
MaplePatch = C:\Nexon\Maple\
}
loop,1
{
IfNotExist, C:\Nexon\Maple
{
IfExist, D:\Nexon\Maple
{
MaplePatch = D:\Nexon\Maple\
Break
}
IfExist, E:\Nexon\Maple
{
MaplePatch = D:\Nexon\Maple\
Break
}
IfExist, F:\Nexon\Maple
{
MaplePatch = D:\Nexon\Maple\
Break
}
IfExist, G:\Nexon\Maple
{
MaplePatch = D:\Nexon\Maple\
Break
}
IfExist, H:\Nexon\Maple
{
MaplePatch = D:\Nexon\Maple\
Break
}
msgbox,48,하이칸 알림,메이플스토리가 정상적인 경로에 설치되지 않았습니다.`n`n하이칸의 재접속관련기능이 작동되지않을수있습니다.
}
}
Menu, tray, Tip, %MyTitle%
WinMove, MapleStory,,0,0
#SingleInstance force


INetOpen(Proxy="", ProxyBypass="", Agent="")
{
   global

   inet_hModule := DllCall("LoadLibrary", "str", "wininet.dll")
   if(!inet_hModule) {
      inet_hModule = 0
      return false
   }

   inet_hInternet := DllCall("wininet\InternetOpenA"
      , "str", (Agent != "" ? Agent : A_ScriptName)
      , "UInt", (Proxy != "" ? 3 : 1)
      , "str", Proxy
      , "str", ProxyBypass
      , "UInt", 0)
   If(!inet_hInternet) {
      INetCloseHandle(inet_hModule)
      return false
   }
   return true
}

INetClose()
{
   global
   INetCloseHandle(inet_hInternet)
   DllCall("FreeLibrary", "UInt", inet_hModule)
   inet_hModule = inet_hInternet = 0
}

INetCloseHandle(hInternet)
{
   return DllCall("wininet\InternetCloseHandle", "UInt", hInternet)
}

INetConnect(Server, Port, Username="anonymous", Password="anonymous", Service="http", FtpPassive=1)
{
   global inet_hInternet
   hConnection := DllCall("wininet\InternetConnectA"
      , "uint", inet_hInternet
      , "str", Server
      , "uint", Port
      , "str", Username
      , "str", Password
      , "uint", (Service = "ftp" ? 1 : (Service = "gopher" ? 2 : 3))
      , "uint", (FtpPassive != 0 ? 0x08000000 : 0)
      , "uint", 0)
   return hConnection
}

FtpCreateDirectory(hConnection, Directory)
{
   return DllCall("wininet\FtpCreateDirectoryA", "uint", hConnection, "str", Directory)
}

FtpRemoveDirectory(hConnection, Directory)
{
   return DllCall("wininet\FtpRemoveDirectoryA", "uint", hConnection, "str", Directory)
}

FtpSetCurrentDirectory(hConnection, Directory)
{
   return DllCall("wininet\FtpSetCurrentDirectoryA", "uint", hConnection, "str", Directory)
}

FtpGetCurrentDirectory(hConnection, ByRef Directory)
{
   len := 261
   VarSetCapacity(Directory, len)
   result := DllCall("wininet\FtpGetCurrentDirectoryA", "uint", hConnection, "str", Directory, "uint*", len)
   VarSetCapacity(Directory, -1)
   return result
}

FtpPutFile(hConnection, LocalFile, RemoteFile="", TransferType="B")
{
   return DllCall("wininet\FtpPutFileA"
      , "uint", hConnection
      , "str", LocalFile
      , "str", (RemoteFile != "" ? RemoteFile : LocalFile)
      , "uint", (TransferType == "A" ? 1 : 2)
      , "uint", 0)
}

FtpGetFile(hConnection, RemoteFile, LocalFile="", TransferType="B", OverWrite=0, LocalAttrib=0)
{
   return DllCall("wininet\FtpGetFileA"
      , "uint", hConnection
      , "str", RemoteFile
      , "str", (LocalFile != "" ? LocalFile : RemoteFile)
      , "int", !OverWrite
      , "uint", LocalAttrib
      , "uint", (TransferType == "A" ? 1 : 2)
      , "uint", 0)
}

FtpGetFileSize(hConnection, File, TransferType="B")
{
   hFile := DllCall("wininet\FtpOpenFileA"
      , "uint", hConnection
      , "str", File
      , "uint", 0x80000000
      , "uint", (TransferType = "A" ? 1 : 2)
      , "uint", 0)
   if(!hFile)
      return -1
   size := DllCall("wininet\FtpGetFileSize", "uint", hFile, "uint*", size)
   INetCloseHandle(hFile)
   return size
}

FtpRenameFile(hConnection, ExistingName, NewName)
{
   return DllCall("wininet\FtpRenameFileA", "uint", hConnection, "str", ExistingName, "str", NewName)
}

FtpDeleteFile(hConnection, File)
{
   return DllCall("wininet\FtpDeleteFileA", "uint", hConnection, "str", File)
}


Menu, tray, NoStandard
Menu, Tray, Add, 시  작 [F10],macrostart
Menu, Tray, Add, 정  지 [F11],stop

Menu, Tray, Add, 홈페이지 가기,HiSoft
Menu, Tray, Add, 프로그램 종료,1guiclose
Menu,Sub1,Add,셋팅 불러오기,불러오기
Menu,Sub1,Add,셋팅 저장하기,저장하기
Menu,Sub1,Add,셋팅 다운로드,셋팅다운

Menu,MyMenu,Add,파일,:Sub1
Menu,Sub2,Add,사용방법,사용법
Menu,Sub2,Add,홈페이지,HiSoft
Menu,MyMenu,Add,도움말,:Sub2
Gui,1: Color, default
Gui,2: Color, default
Gui,3: Color, default
Gui,4: Color, default
Gui,5: Color, 0xFFFFFF
Gui,1: Menu,MyMenu
Gui,1: Font, s9 Norm,
Gui,2: Font, s8 Norm,
Gui,3: Font, s8 Norm,
Gui,4: Font, s8 Norm,
Gui,5: Font, s8 Norm,
Gui,1: +toolwindow
Gui,1: Add, Tab, x6 y10 w475 h350 , 메  인|사  냥|공  격|회  복|위  치|좌  표|설 정 1|설 정 2|기  타
Gui,1: Tab
Gui,1: Add, slider, x447 y15 w35 h12 vcrystalv gcrystal range100-255, 255
Gui,1: Add, GroupBox, x10 y360 w230 h77 CBlack, 캐릭터 상태 정보
Gui,1: Add, GroupBox, x250 y360 w230 h77 CBlack, 하이칸
Gui,1: Font, s9 Norm bold,
Gui,1: Add, Button, x265 y376 w90 h25 -Theme bold vmacrostart gmacrostart, 시작[F10]
Gui,1: Add, Button, x375 y376 w90 h25 -Theme bold vstop gstop, 정지[F11]
Gui,1: Add, Button, x265 y404 w90 h25 -Theme bold gHiSoft, 홈페이지
Gui,1: Add, Button, x375 y404 w90 h25 -Theme bold g사용법, 사용방법
Gui,1: Add, Button, x165 y380 w63 h45 -Theme gOK, 정보확인
Gui,1: Font, s9 Norm,
Gui,1: Add, Text, x14 y382 w28 h10 +Center CBlack, H P
Gui,1: Add, Text, x14 y397 w28 h10 +Center CBlack, M P
Gui,1: Add, Text, x14 y412 w28 h10 +Center CBlack, EXP
Gui,1: Add, Progress, x45 y381 w115 h13 CRED Range1-130 vHPBAR, 2
Gui,1: Add, Progress, x45 y396 w115 h13 CBLUE Range1-130 vMPBAR, 2
Gui,1: Add, Progress, x45 y411 w115 h13 CYELLOW Range1-300 vEXPBAR, 4
Gui, 1: Tab, 메  인
Gui, 1: Add, GroupBox, x16 y200 w260 h70 CBlack, 스크린샷 설정
Gui, 1: Add, GroupBox, x16 y280 w260 h70 CBlack, 메이플스토리 해상도 설정
Gui, 1: Add, GroupBox, x286 y280 w180 h70 CBlack, 사용환경 및 프로세스 설정
Gui, 1: Add, GroupBox, x286 y200 w180 h70 CBlack, 비프음 설정
Gui, 1: Add, Listbox, x286 y40 w180 h150 Backgroundeeffff vupdatelog gupdatego, 업데이트 목록|하이칸 7.1 업데이트 완료|하이칸 7.0 업데이트 완료|하이칸 6.7 업데이트 완료|하이칸 6.6 업데이트 완료|하이칸 6.5 업데이트 완료|하이칸 6.4 업데이트 완료|하이칸 6.3 업데이트 완료|하이칸 6.2 업데이트 완료|하이칸 6.1 업데이트 완료|하이칸 6.0 업데이트 완료|하이칸 5.9 업데이트 완료|하이칸 5.8 업데이트 완료|하이칸 5.7 업데이트 완료|하이칸 5.6 업데이트 완료|하이칸 5.5 업데이트 완료|하이칸 5.4 업데이트 완료|하이칸 5.3 업데이트 완료|하이칸 5.2 업데이트 완료|하이칸 5.1 업데이트 완료|하이칸 5.0 업데이트 완료|하이칸 4.9 업데이트 완료|하이칸 4.8 업데이트 완료|하이칸 4.7 업데이트 완료|하이칸 4.6 업데이트 완료|하이칸 4.5 업데이트 완료|하이칸 4.0 업데이트 완료|하이칸 3.2 업데이트 완료|하이칸 3.0 업데이트 완료|하이칸 2.6 업데이트 완료|하이칸 2.0 업데이트 완료|하이칸 1.0 업데이트 완료
Gui, 1: Add, edit, x16 y40 w260 h150 Backgroundffffff ReadOnly vlog,
Gui, 1: Add, Text, x301 y299 w70 h14 +Center, 사용환경
Gui, 1: Add, Text, x381 y299 w70 h14 +Center, HiCan.exe
Gui, 1: Add, CheckBox, x306 y220 w140 h20 vJBeep +Center, 좌표설정시 소리내기
Gui, 1: Add, CheckBox, x306 y240 w140 h20 vSBeep +Center, 캐릭사망시 소리내기
Gui, 1: Add, DropDownList, x301 y320 w70 h130 vmaplep, 기본값|16비트|렉걸릴때|넷북|넷북+16|넷북+32
Gui, 1: Add, DropDownList, x381 y320 w70 h105 vhicanp, 기본값|높음|보통초과|보통|보통미만|낮음
Gui, 1: Add, Button, x26 y220 w40 h20 Disabled, 경로
Gui, 1: Add, Button, x241 y220 w20 h20 -theme gfolder, ..
Gui,1: Font, s8 Norm,
Gui, 1: Add, Button, x381 y200 w60 h17 -theme gmsound, 미리듣기
Gui,1: Font, s9 Norm,
Gui, 1: Add, Edit, x76 y220 w160 h20 ReadOnly vSHOTGL, %A_Desktop%\
Gui, 1: Add, CheckBox, x26 y240 w120 h20 +Center vCLSH, 캐릭 사망 시 찍기
Gui, 1: Add, CheckBox, x146 y240 w120 h20 +Center vGTSH, 거탐 발견 시 찍기
Gui, 1: Add, Radio, x46 y310 w80 h20 +Center gHSD v800, 800 x 600
Gui, 1: Add, Radio, x156 y310 w80 h20 +Center gHSD v1024, 1024 x 768
Gui, 1: Tab, 사  냥
Gui, 1: Add, GroupBox, x16 y40 w220 h150 CBlack, 사냥방법
Gui, 1: Add, GroupBox, x16 y200 w220 h150 CBlack, 거짓말탐지기는 "설정1" 탭에서 하세요
Gui, 1: Add, GroupBox, x246 y260 w130 h90 CBlack, 캐릭터 멈춤 방지
Gui, 1: Add, GroupBox, x246 y40 w220 h70 CBlack, 점프하면서 공격설정
Gui, 1: Add, GroupBox, x246 y200 w220 h50 CBlack, 캐릭터가  이동할 거리 설정
Gui, 1: Add, GroupBox, x246 y120 w220 h70 CBlack, 텔레포트+공격설정
Gui, 1: Add, GroupBox, x386 y260 w80 h90 CBlack, 줍기설정
Gui, 1: Add, Radio, x66 y70 w120 h20 checked +Center vLob, 행동 반복 사냥
Gui, 1: Add, Radio, x66 y110 w120 h20 +Center vMob, 몹 인식 사냥
Gui, 1: Add, Radio, x66 y150 w120 h20 +Center vJob, 자리잡고 사냥
Gui, 1: Add, CheckBox, x256 y60 w125 h15 vJAS, 점프공격 사용하기
Gui,1: Font, s8 Norm,
Gui, 1: Add, CheckBox, x394 y40 w14 h15 vDJAS, 더블점프
Gui, 1: Add, Text, x409 y42 w45 h14 , 더블점프
Gui,1: Font, s9 Norm,
Gui, 1: Add, CheckBox, x256 y140 w125 h15 vTPS, 텔포공격 사용하기
Gui, 1: Add, CheckBox, x396 y280 w60 h60 +Center vITZ, 아이템 줍기
Gui, 1: Add, CheckBox, x256 y280 w110 h20 g사돠알 vSDLBJ +Center, 멈춤 방지 사용
Gui, 1: Add, DropdownList, x396 y160 w60 h95 +Center vtelpo, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, DropdownList, x0 y0 w1 h1 Disabled vdrop, shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, DropdownList, x396 y80 w60 h95 +Center vjump, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, Slider, x256 y220 w200 h20 Range1-10 v0SLIDERS, 0
Gui, 1: Add, Text, x396 y60 w60 h15 +Center, 점프키
Gui, 1: Add, Text, x396 y140 w60 h15 +Center, 텔포키
Gui, 1: Add, Text, x255 y163 w80 h15 , 텔포후딜레이:
Gui, 1: Add, Text, x256 y85 w80 h15 , 점프후딜레이:
Gui, 1: Add, Edit, x346 y80 w35 h20 +Center ReadOnly limit2 vjumpatackdly, 1
Gui, 1: Add, updown, x364 y80 w20 h20 Range1-20,
Gui, 1: Add, Edit, x346 y160 w35 h20 +Center ReadOnly limit2 vtelpoatackdly, 5
Gui, 1: Add, updown, x364 y160 w20 h20 Range1-20,
Gui, 1: Add, dropdownlist, x306 y310 w60 h95 vTimejumpkey, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, text, x256 y314 w50 h14 , 점프키 :
Gui, 1: Tab, 공  격
Gui, 1: Add, GroupBox, x16 y40 w450 h310 CBlack, 공격설정
Gui, 1: Font, s9 Norm bold,
Gui, 1: Add, Text, x26 y324 w435 h14 +Center, 공격설정의 맨 우측의 "숫자적는칸"은 공격후딜레이입니다.( 1 = 0.1초 )
Gui, 1: Font, s9 Norm,
Gui, 1: Add, Text, x98 y94 w7 h14 , +
Gui, 1: Add, Text, x98 y144 w7 h14 , +
Gui, 1: Add, Text, x98 y194 w7 h14 , +
Gui, 1: Add, Text, x98 y244 w7 h14 , +
Gui, 1: Add, Text, x98 y294 w7 h15 , +
Gui, 1: Add, Text, x168 y94 w15 h14 , 를
Gui, 1: Add, Text, x168 y144 w15 h14 , 를
Gui, 1: Add, Text, x168 y194 w15 h15 , 를
Gui, 1: Add, Text, x168 y244 w15 h15 , 를
Gui, 1: Add, Text, x168 y294 w15 h15 , 를
Gui, 1: Add, Text, x221 y94 w147 h14 , 만큼 공격사용 ( 1 = 0.1초 )
Gui, 1: Add, Text, x221 y144 w147 h14 , 만큼 공격사용 ( 1 = 0.1초 )
Gui, 1: Add, Text, x221 y194 w147 h14 , 만큼 공격사용 ( 1 = 0.1초 )
Gui, 1: Add, Text, x221 y244 w147 h15 , 만큼 공격사용 ( 1 = 0.1초 )
Gui, 1: Add, Text, x221 y294 w147 h14 , 만큼 키를누름 ( 1 = 0.1초 )
Gui, 1: Add, DropdownList, x46 y90 w50 h95 vath1, 없음|↑|↓|←|→|↑↑|↑↓|↑←|↑→|↓↑|↓↓|↓←|↓→|←↑|←↓|←←|←→|→↑|→↓|→←|→→
Gui, 1: Add, DropdownList, x46 y140 w50 h95 vath2, 없음|↑|↓|←|→|↑↑|↑↓|↑←|↑→|↓↑|↓↓|↓←|↓→|←↑|←↓|←←|←→|→↑|→↓|→←|→→
Gui, 1: Add, DropdownList, x46 y190 w50 h95 vath3, 없음|↑|↓|←|→|↑↑|↑↓|↑←|↑→|↓↑|↓↓|↓←|↓→|←↑|←↓|←←|←→|→↑|→↓|→←|→→
Gui, 1: Add, DropdownList, x46 y240 w50 h95 vath4, 없음|↑|↓|←|→|↑↑|↑↓|↑←|↑→|↓↑|↓↓|↓←|↓→|←↑|←↓|←←|←→|→↑|→↓|→←|→→
Gui, 1: Add, DropdownList, x46 y290 w50 h95 vath5, 없음|↑|↓|←|→|↑↑|↑↓|↑←|↑→|↓↑|↓↓|↓←|↓→|←↑|←↓|←←|←→|→↑|→↓|→←|→→
Gui, 1: Add, DropdownList, x106 y90 w60 h95 +Center vatack1, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, DropdownList, x106 y140 w60 h95 +Center vatack2, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, DropdownList, x106 y190 w60 h95 +Center vatack3, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, DropdownList, x106 y240 w60 h95 +Center vatack4, a|b|c|d|e|f|g|h|i|j|k|l|m|n|o|p|q|r|s|t|u|v|w|x|y|z|shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, DropdownList, x106 y290 w60 h95 +Center vatack5, shift|alt|ctrl|space|insert|home|delete|end|pgdn|pgup
Gui, 1: Add, Edit, x186 y90 w35 h20 +Center ReadOnly limit1 +Center v0aT1, 0
Gui, 1: Add, updown, x203 y90 w20 h20 Range1-99,
Gui, 1: Add, Edit, x186 y140 w35 h20 +Center ReadOnly limit1 +Center v0aT2, 0
Gui, 1: Add, updown, x203 y140 w20 h20 Range1-99,
Gui, 1: Add, Edit, x186 y190 w35 h20 +Center ReadOnly limit1 +Center v0aT3, 0
Gui, 1: Add, updown, x203 y190 w20 h20 Range1-99,
Gui, 1: Add, Edit, x186 y240 w35 h20 +Center ReadOnly limit1 +Center v0aT4, 0
Gui, 1: Add, updown, x203 y240 w20 h20 Range1-99,
Gui, 1: Add, Edit, x186 y290 w35 h20 +Center ReadOnly limit1 +Center v0aT5, 0
Gui, 1: Add, updown, x203 y290 w20 h20 Range1-99,
Gui, 1: Add, CheckBox, x368 y90 w78 h20 vDa1, 뒤돌아공격
Gui, 1: Add, CheckBox, x368 y140 w78 h20 vDa2, 뒤돌아공격
Gui, 1: Add, CheckBox, x368 y190 w78 h20 vDa3, 뒤돌아공격
Gui, 1: Add, CheckBox, x368 y240 w78 h20 vDa4, 뒤돌아공격
Gui, 1: Add, CheckBox, x368 y290 w15 h20 vDa5, 뒤돌아공격
Gui, 1: Add, Text, x385 y293 w63 h14 , 뒤돌아공격
Gui, 1: Add, Edit, x446 y90 w15 h20 +Center limit1 vAtDly1, 0
Gui, 1: Add, Edit, x446 y140 w15 h20 +Center limit1 vAtDly2, 0
Gui, 1: Add, Edit, x446 y190 w15 h20 +Center limit1 vAtDly3, 0
Gui, 1: Add, Edit, x446 y240 w15 h20 +Center limit1 vAtDly4, 0
Gui, 1: Add, Edit, x446 y290 w15 h20 +Center limi

댓글 없음:

댓글 쓰기