I need a few solution for this script,I'm not find where it wrong,any body care?,thanks ; clf is stand for create layer with fast ; Design by Ade Suharna <> ; 17 February 2005 ; Program no. ; Edit by (defun c:clf (/ cnt n nlay) (setq cnt 1) (setq n (fix (getreal " HOW MANY LAYER YOU WOULD CREATE: "))) (repeat n (cond ((and (= cnt 1)(> cnt n)) (progn (setq nlay cnt) (command "_layer" "n" nlay "") ) ; end of progn ) ) ; end of cond (setq cnt (1+ cnt)) ) ; end of repeat (princ) )