Jump to content

bordomavi

Active Members
  • Posts

    138
  • Joined

  • Last visited

Recent Profile Visitors

111 profile views

bordomavi's Achievements

  1. Func Terminate() Exit EndFunc Global $UnPaused HotKeySet("{F8}", "TogglePause") HotKeySet("{Esc}", "Terminate") While 1 Sleep(100) ToolTip("press f8 for starting z1",0,0) WEnd Func TogglePause() $UnPaused = NOT $UnPaused While $UnPaused ToolTip("press f8 for stop z1",0,0) Send("Z") Sleep(50) Send("1") WEnd EndFunc i build oto clicker for my game. it works but not working on game. i think it is writing not pressing. maybe these are same things but i dont know. can you help me?
  2. I created 32bit exe fie Runed ~APC "exe path.exe" with "AC_93.15_PR" and:. it created new .exe file and i runned it: it gived this error. Tamam = OK in English.
  3. AC_93.15_PR => "Aut2exe" stoped running." I use windows7 x64
  4. I build with this settings only. But my .exe file doesn't open. What is wrong?
  5. i compile my files with this. but i can decompile all. i write au3's path and make exe. Is there anything else I need to adjust?
  6. i want it for $ListView1_0 not for $Checkbox1 and i tried this $ListView1_0 it doesnt work
  7. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <ListViewConstants.au3> #include <WindowsConstants.au3> #include <GuiListView.au3> $Form1 = GUICreate("Form1", 320, 259, 192, 124) Global $Checkbox1 = GUICtrlCreateCheckbox("Select All Items", 8, 24, 97, 17, BitOR($BS_3STATE,$WS_TABSTOP)) $test = GuiCtrlCreateButton("test all checked", 200, 24, 97, 17) $ListView1 = GUICtrlCreateListView("Items", 8, 48, 297, 201) GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 100) _GUICtrlListView_SetExtendedListViewStyle($ListView1, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_CHECKBOXES)) $ListView1_0 = _GUICtrlListView_AddItem($ListView1,"one") $ListView1_1 = _GUICtrlListView_AddItem($ListView1,"two") $ListView1_2 = _GUICtrlListView_AddItem($ListView1,"three") $ListView1_3 = _GUICtrlListView_AddItem($ListView1,"four") $ListView1_4 = _GUICtrlListView_AddItem($ListView1,"five") GUISetState(@SW_SHOW) Global $allchecked = 0 While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $test If GUICtrlRead($ListView1_0) = $GUI_CHECKED Then Msgbox(0,"", "") EndIf Case $Checkbox1 If GUICtrlRead($Checkbox1) = $GUI_UNCHECKED Then GUICtrlSetState($Checkbox1, $GUI_CHECKED) For $C = 1 To _GUICtrlListView_GetItemCount($ListView1) _GUICtrlListView_SetItemChecked($ListView1, $C - 1) Next $allchecked = 1 ElseIf GUICtrlRead($Checkbox1) = $GUI_CHECKED Then GUICtrlSetState($Checkbox1, $GUI_UNCHECKED) For $C = 1 To _GUICtrlListView_GetItemCount($ListView1) _GUICtrlListView_SetItemChecked($ListView1, $C - 1, False) Next $allchecked = 0 EndIf EndSwitch WEnd why case $test doesn't work
  8. local $ini = @ScriptDir & "/com.ini" If FileGetSize ( $ini ) <> 0 Then $shuts = IniRead ( $ini , "commands" , "shutdown" , "" ) $msg = IniRead ( $ini , "commands" , "msg" , "" ) $sleep = IniRead ( $ini , "commands" , "sleep" , "" ) MsgBox ( 0 , "Hi" , $msg ) Exit Else sleep (5000) EndIf try
  9. it must stops the one which is started in the _download() function
  10. is it stops download while downloading?
×
×
  • Create New...