client/Move(newloc, direc)
if(istype(mob.loc, /obj/car))
if(mob.loc.contents.Find(mob) == 1)
mob.loc.Move(newloc, direc)//line 4
return 0
return ..()
Problem description:
CAr.dm:4:error:mob.loc.Move:undefined proc
I dont know what im getting this probelm what can i do to fix it?
If you can learn to read your error codes, you'll be able to advance in programming much more quickly. It says that mob.loc.Move() is an undefined proc. Think to yourself just what mob.loc is. Now, examine this short sketch of some hierarchies:
Types descendant of /datum/atom/movable are those which are capable of movement.
Hiead