Code:
// This is a simple sprint script written by Bruno - Oak daKilla (edited by alessior)
// This macro will start crouch walking, sprint and then rest, and loop;
// First you will need to go to options, Input Bindings and change Autorun to "N" and sprint to "H", aswell as a_toggle_autocrouch (which is not the same as a_crouch in bindings) to "J";
// When you finish use the macro, just put default to input bindings and everything come back to normal again;
// Is better you do that in front of a wall;
// You cant be with equiped weapons;
// You can change restdelay and sprint time ( to chanfe sprint time go to line 26 and change the seconds)
//HOTBAR///
//Slot 9 = Rest
// This line is necessary to select the proper window
SetActiveWindow Darkfall Online
Constants
RestDelay=160000
End
////////////////////////////////////////
Procedure Sprint
Delay 2 sec
Keys N
Delay 1 sec
Keydown H 230 sec
Delay 1 sec
Keys S
End
////////////////////////////////////////
Procedure Crouch
Delay 2 sec
Keys N
Delay 1 sec
Keys J
Delay $RestDelay
Keys J
Delay 1 sec
Keys N
End
////////////////////////////////////////
Procedure Rest
Keys 9
Delay 2 sec
LEFTCLICK
Delay $RestDelay
Keys {SPACE}
Delay 2 sec
End
//Start Macro
Loop 10000
Call Crouch
Call Sprint
Call Rest
End






