Hey so I've been messing with AutoHotKey and its usefulness for minecraft, and I've come up with a few things that could be useful for our server.
First, go to
http://www.autohotkey.com/download/ to DL it if you don't have it already. Its a non-obtrusive program that you can turn off any time.
After you install it, there should be a green box in the bottom right hand of the screen. Right click it and click edit, then paste all or some of this:
^v::Send t/paste{Return} ; press ctrl-v to paste
^z::Send t/undo{Return} ; press ctrl-z to undo
^c::Send t/copy{Return} ; press ctrl-c to copy
^x::Send t/cut{Return} ; press ctrl-x to cut
^b::Send t/measure{Return} ; press ctrl-b to measure
^f::Send t/c{Return} ; press ctrl-f to do a cuboid
^g::Send t/mark{Return} ; press ctrl-g to mark
^t::Send t/c air{Return} ; press ctrl-t to make a cuboid of air
^p::
SendInput t/patrol{Return}
Sleep 300
SendInput {Shift down}
SendInput {q down}
Sleep 500
SendInput {q up}
SendInput {Shift up}
MouseMove <X>, <Y+400>, 5
return
To use that last one, it takes a bit of preparation. Right click on the green box again, open window spy, go to your minecraft and control your guy. in the window spy, itll tell you a mouse position (In Active Window: X, Y). Replace the <X> and <Y> with those numbers (Y add 400). For example, I see In Active Window: 511, 338, so I'd type
MouseMove 511, 700, 5
in that line.
Now you have a command that patrols, flies up and then looks straight down.
On a related note, the ';' key is just for comments.
Enjoy!