ID:142760
 
Code:
    CarbonCopy(atom/movable/O in world)
set desc = "() Create an exact duplicate of a given object"
set category = "Blunt Spec"
var/mob/M = O
if(istype(M)
usr << "You can't duplicate PCs' mobs"
var/atom/new_O = new O.type(O.loc)
for(var/V in O.vars)
if(issaved(O.vars[V])) new_O.vars[V] = O.vars[V]
usr << "[O] was duplicated."


Problem description:

Admin.dm:113:error: usr: missing comma ',' or right-paren ')'
not sure whats wrong with this but it jumps to the line

usr << "You can't duplicate PCs' mobs"
you missed out a bracket at if(istype(M). should be if(istype(M))
well there i can see many errorrs like
if(istype(M)
its wrong its
if(istype(M))
also why you keep using 0 after you defined 0 as M?? there are a few more errorrs like indetations ones o.o