a normal score
physics always marvellous isn't it? a cheat score:
draw with ahk
F8:: MouseGetPos, startX, startY radius := 600 pi:= 4 * ATan(1) centerX := startX centerY := startY-radius step := 120 Loop,120 { x:=centerX+Round(radius*Sin(A_Index*(360/step)*pi/180),0) y:=centerY+Round(radius*Cos(A_Index*(360/step)*pi/180),0) MouseMove, x, y, 0 } return ESC:: ExitApp