Це відео не доступне.
Перепрошуємо.

AHK Tutorial - Mouse Auto Click Recorder + Source Code OSRS Bot

Поділитися
Вставка
  • Опубліковано 10 бер 2021
  • A simple AHK Tutorial for making a Mouse Click Recorder Osrs Bot.
    Source used in video
    www.oldschoolscripts.com/free...
    Does Jagex ban locked accounts faster?
    • OSRS Does Jagex ban lo...
    Can Jagex Detect Auto Clickers?
    • OSRS Can Jagex Detect ...
    osrs runescape bot botting old school runescape ahk auto hotkey autohotkey

КОМЕНТАРІ • 11

  • @nomscripts
    @nomscripts  3 роки тому

    My basic patreon tier will be discounted for the first few subscribers after a new video upload.
    Support me in making more content!
    www.patreon.com/posts/33697324

  • @bobanval
    @bobanval 3 роки тому +1

    Nom always loving your high quality content. For real your channel is only high quality

  • @RedeemedOSRS
    @RedeemedOSRS 3 роки тому

    What's does the .push command do in AHK? Are you defining vars x and y in line 36?
    Sorry I've never been good with arrays.

    • @nomscripts
      @nomscripts  3 роки тому +1

      push: add object to an array.
      Yes, I'm creating an object with an x and y parameter.

  • @mattyr3724
    @mattyr3724 3 роки тому

    Does ahk use its own language/ commands?

  • @Corrector333
    @Corrector333 2 роки тому

    Please, write command
    Pressing the H key an unlimited random number of times with a pause of 2 seconds before manually pressing the Shift key, when pressed, the script presses the Z key.

  • @technobabe6944
    @technobabe6944 3 роки тому +1

    Suggestion: Use AHK on a mobile emulator. The detection seems to be a lot worse on mobile.

  • @dutiot2326
    @dutiot2326 3 роки тому +1

    I can use this for a recoil hack.

  • @Benry675
    @Benry675 2 роки тому

    i wish someone could set all this up for me lolol

  • @MisterGodBunny
    @MisterGodBunny 3 роки тому +3

    curry

  • @mrhrush4810
    @mrhrush4810 5 місяців тому

    The same code, but for AHK v2.0
    And I commented out Esc button to not exit the program.
    ToolTip "How to use`nPress F5 to toggle Recording`nPress F6 to playback", 0, 0
    Points := Array()
    global bIsRecording := False
    SetTimer RemoveToolTip, 1000
    F5::
    {
    global bIsRecording
    global Points

    bIsRecording := !bIsRecording
    MouseGetPos(&CurX, &CurY)
    if(bIsRecording)
    {
    Points := []
    ToolTip("Recording!", CurX, CurY)
    } else {
    ToolTip("Stopped Recording", CurX, CurY)
    }
    return
    }
    ~LButton::
    {
    global bIsRecording
    global Points
    if(!bIsRecording){
    return
    }
    MouseGetPos(&CurX, &CurY)
    Points.Push({X: CurX, Y: CurY})
    ToolTip("Added point", CurX, CurY)
    return
    }
    F6::
    {
    global Points
    for Point in Points
    {
    ToolTip("Click!", Point.X, Point.Y)
    Click( Point.X, Point.Y )
    Sleep( 200 )
    }

    return
    }
    RemoveToolTip()
    {
    ToolTip()
    return
    }
    ;Esc::
    ;{
    ;ExitApp
    ;}