;Alan's Move Coordinates script ;Creates the position coordinates for the Move in Path scripts. ;Create a spot that covers the area of the move. ;Set the spot to 'don't move here'. ;Place the following script in the spot. ;Say "coords on". ;Click the mouse at each position you want to move ;Say "coords off" to disable. ;Copy/paste from your log into one of the Move in Path scripts. ;Remove the spot when you're through generating the coordinates. ON OUTCHAT { coords GLOBAL { 1 coords = "" CHATSTR = } CHATSTR "coords on" == ISWIZARD AND IF { 0 coords = "" CHATSTR = } CHATSTR "coords off" == ISWIZARD AND IF } ON SELECT { coords GLOBAL { "[ " MOUSEPOS ITOA SWAP ITOA " " & SWAP & & " ]" & LOGMSG } coords ISWIZARD AND IF }