Jump to content

Recommended Posts

Posted

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!

Posted
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

Posted

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).

  • Moderators
Posted

@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!

Posted
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

Posted
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
Posted

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!

Guest
This topic is now closed to further replies.
×
×
  • Create New...