An other problem.
I want to receive the name of a path (with path_set()) which i created with path_create() and use it in ent_movepath()

road1.track_path is an ENTITY Pointer with an model attached to a path.
Code:
function move_car()
 {
 	
 	ENTITY* car = ent_create("mini.mdl",0,0);
  	STRING* tpath;
 	path_set(road1.track_path,tpath);
 	printf(_chr(tpath));
 	ent_movepath(car,tpath, 5,2);
 	 	
}



printf shows me some crazy symbols an the car dont move
along the path.

Also a bug or my fail?