Hey i need a Strafe Left + Strafe right script (Keybind mod)

Discussion in 'General Minecraft Discussion' started by SuperEgat, Jul 6, 2018.

  1. Hey i really need a Strafe left + Strafe right script with delay! It would be awesome if someone would help me! Thanks. Any questions please leave it down below!
  2. I'm interested in this, hope I can get ya one!
    FadedMartian and SuperEgat like this.
  3. What do you mean by strafe left/right? Not sure what exactly you're wanting the script to do.
  4. So i want the script to make me click A and D. Like move all the time by just using A and D. Thanks
  5. You want the script to hold down A when clicking A once?
  6. I want the script to do this in a loop! https://gyazo.com/43aeb4334ada4346ab4f5f4591216aa4
  7. Just so you know, if you're planning to use this to avoid the AFK detection, it won't work.
  8. Nope its not for that. i need it for something else
  9. Using the Macro Mod, right?

    You could use this then:
    Code:
    $${DO;KEYDOWN(30);WAIT(1);KEYUP(30);KEYDOWN(32);WAIT(1);KEYUP(32);UNTIL(SHIFT)}$$
    Adjust the WAIT value from 1 second depending on how long you want to move to the left and right. Also, those number codes should work if your left/right movement keys are 'A' and 'D,' respectively. If not, you just have to change them out for the values show in the picture here: https://minecraft.gamepedia.com/Key_codes

    One last note, to exit the macro you have to hold the shift key until the macro stops.

    Hopefully that helps :)
    TomvanWijnen likes this.