GasterWS Posted March 27, 2019 Posted March 27, 2019 Can anyone help me, I have been trying to make a script that will press Ctrl + V and then press Enter and then repeat that with a 101 second delay over and over again, can someone come up with a way to do this? Thanks!
Nine Posted March 27, 2019 Posted March 27, 2019 2 minutes ago, GasterWS said: I have been trying to make a script that Please show what you have scripted so far... “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
Jfish Posted March 27, 2019 Posted March 27, 2019 Also there is probably a better way to do what you want to get done ... what are you trying to do? I would also make sure it conforms to the rules of the forum ... Build your own poker game with AutoIt: pokerlogic.au3 | Learn To Program Using FREE Tools with AutoIt
GasterWS Posted March 28, 2019 Author Posted March 28, 2019 19 hours ago, Nine said: Please show what you have scripted so far... this is the script I tried with, there are probably a lot of wrongs with this script Warframe Auto Paste.au3
GasterWS Posted March 28, 2019 Author Posted March 28, 2019 Just now, GasterWS said: this is the script I tried with, there are probably a lot of wrongs with this script Warframe Auto Paste.au3 945 B · 0 downloads Dim $Start HotKeySet("{F8}","Pause") HotKeySet("{F1}","Start") While 1 Sleep(50) WEnd Func Start() $Start = NOT $Start If $Start Then ToolTip('Press (F8) to Pause',0,0) $start = TimerInit() While $Start If TimerDiff($start) > 100000 Then Send("{ENTER}") Sleep(50) Send("^v") Sleep(50) Send("{ENTER}") $start = TimerInit() EndIf WEnd ToolTip("") EndFunc Func Pause() ToolTip('Press (F1) to Start',0,0) While 1 Sleep(50) WEnd EndFunc
Nine Posted March 28, 2019 Posted March 28, 2019 I think you are using the same name $start for 2 purposes...And pause () will never exit (should have a toggle). And you should define a key to exit the script (like {ESC}). When you post code use <> (just before emoticon). “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
Moderators JLogan3o13 Posted March 28, 2019 Moderators Posted March 28, 2019 @GasterWS can you please explain exactly what application you are trying to automate? There is probably a better way to do this. ====In case you missed it, this is a Mod stepping into a thread=== "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
GasterWS Posted March 28, 2019 Author Posted March 28, 2019 19 minutes ago, JLogan3o13 said: @GasterWS can you please explain exactly what application you are trying to automate? There is probably a better way to do this. ====In case you missed it, this is a Mod stepping into a thread=== im trying to auto send a message so that I can go AFK
GasterWS Posted March 28, 2019 Author Posted March 28, 2019 36 minutes ago, Nine said: I think you are using the same name $start for 2 purposes...And pause () will never exit (should have a toggle). And you should define a key to exit the script (like {ESC}). When you post code use <> (just before emoticon). I cant start the script, it just says paused no matter what I do
Moderators JLogan3o13 Posted March 28, 2019 Moderators Posted March 28, 2019 2 minutes ago, GasterWS said: im trying to auto send a message so that I can go AFK an auto message in what application was the question "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Moderators JLogan3o13 Posted March 28, 2019 Moderators Posted March 28, 2019 That is what I was afraid of. Please see our forum rules, especially the part about game automation, and you will see why this thread is locked. You will receive no help on that subject here. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Recommended Posts