Posted By: peteredlin
Can someone check this code [syntax error][solved] - 08/06/12 16:50
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:
Scripit file (used for configuration):
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:
Code:
STRING* ChasisModel = ""; ENTITY* Chasis; VECTOR* ChasisPosition;
Scripit file (used for configuration):
Code:
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;