This is a little code that makes it easier to draw a line at a specific angle. The problem is that when I enter a value for the angle it tells me "invalid option keyword". Any thoughts? (defun c:bossline (/ pt1 len ang) (cond ((null (setq pt1 (getpoint " First point: "))) nil) ((null (setq len (getdist " Length: "))) nil) ((null (setq ang (getangle " Angle: "))) nil) (t (command ".line" pt1 (strcat "@" (rtos len) "<" (angtos ang)) ""))) (princ)) Thanks a bunch!