<Direction> <1To10>

SCRIPT {
    MouseGrid 0
    xPos& = 0
    yPos& = 0
    nDistance& = Val( _arg2 ) * 3
    if _arg1 = "Up"     then yPos& = yPos& - nDistance&
    if _arg1 = "Down"   then yPos& = yPos& + nDistance&
    if _arg1 = "Left"   then xPos& = xPos& - nDistance&
    if _arg1 = "Right"  then xPos& = xPos& + nDistance&
    SetMousePosition 2, xPos&, yPos&
}