Kotai Posted July 5, 2009 Posted July 5, 2009 Hello! I hope i find help in this forum. i need a skript waht does follow thinks: Run Skript: -Press F6 -Press F2 -Press 1 (wait 10sec) -Press 2 (wait 10sec) -Press 3 (wait 10sec) -Press 4 (wait 10sec) -Press 5 (wait 10sec) -Press F3 -Press F5 End Skript. And this in a loop with 650sec delay. thats all i hope anyone has a little bit time for it
Moderators Melba23 Posted July 5, 2009 Moderators Posted July 5, 2009 Kotai,First, welcome to the AutoIt forums.When you post here it always helps if you have had a go at solving your problems beforehand. Having some code to work on is a great help - and no-one here is too keen to help the "code it for me" brigade.So perhaps if you were to look at While...WEnd, Send, TimerInit and TimerDiff in the Help file, you could start to code something for yourself - you know where we are when you run into problems. ;-)M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Kotai Posted July 5, 2009 Author Posted July 5, 2009 i´m sorry ,but i have a hard week. i work 12h 6day of the week . i dont have the time to learn it and all what i need is this skipt . I would have more time but in Sommer Time we have to much work. have a heart for me.
James Posted July 5, 2009 Posted July 5, 2009 (edited) Hello! Run Skript: -Press F6 -Press F2 -Press 1 (wait 10sec) -Press 2 (wait 10sec) -Press 3 (wait 10sec) -Press 4 (wait 10sec) -Press 5 (wait 10sec) -Press F3 -Press F5 End Skript.Send("{F6}") Send("{F2}") Send("1") Sleep(10000) Send("2") Sleep(10000) Send("3") Sleep(10000) Send("4") Sleep(10000) Send("5") Sleep(10000) Send("{F3}") Send("{F5}") With loop: While 1 Send("{F6}") Send("{F2}") Send("1") Sleep(10000) Send("2") Sleep(10000) Send("3") Sleep(10000) Send("4") Sleep(10000) Send("5") Sleep(10000) Send("{F3}") Send("{F5}") Sleep(650000); Sleep for 650 seconds WEnd Edited July 5, 2009 by JamesBrooks Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
Kotai Posted July 5, 2009 Author Posted July 5, 2009 While 1 Send("{F6}") Send("{F2}") Send("1") Sleep(10000) Send("2") Sleep(10000) Send("3") Sleep(10000) Send("4") Sleep(10000) Send("5") Sleep(10000) Send("{F3}") Send("{F5}") Sleep(650000); Sleep for 650 seconds WEnd thank you very much! but the last prob is , that only works in desktop and i need it for a game
James Posted July 5, 2009 Posted July 5, 2009 (edited) thank you very much! but the last prob is , that only works in desktop and i need it for a gameI said this in the reply to your PM. Most games have anti-cheat protection. Edited July 5, 2009 by JamesBrooks Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
PsaltyDS Posted July 5, 2009 Posted July 5, 2009 i´m sorry ,but i have a hard week. i work 12h 6day of the week . i dont have the time to learn it and all what i need is this skipt . I would have more time but in Sommer Time we have to much work. have a heart for me.thank you very much! but the last prob is , that only works in desktop and i need it for a gameOh, good grief! Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
James Posted July 6, 2009 Posted July 6, 2009 We wont help you cheat. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
Recommended Posts