Hello,
I work on a project with multiple files. But when i try to run the main scripts i get an syntax error in a included script.
Header file:
STRING* ChasisModel = "";
ENTITY* Chasis;
VECTOR* ChasisPosition;
Scripit file (used for configuration):
ChasisModel = "Chasis.mdl";
//Wheeled section
axles = 3
//first axle
Wheels[1] = "FrontWheel.mdl";
WheelParrent[1] = chasis;
//second axle
Wheels[2] = "RearWheel.mdl";
WheelParrent[2] = chasis;
//third axle
Wheels[3] = "RearWheel.mdl";
WheelParrent[3] = chasis;