[SOLVED]
Can someone PLEASE tell me what is wrong with the following. All I see is the flag pole.

I get this warning in the RPT: Warning Message: Cannot load texture mpmissions\dayz_epoch_17.chernarus\flag.jpg.
I have my picture in the root of the mission side. its call flag.jpg. its 512x256.
The following is my script, it is called flag.sqf and it is located in the mission side at signs_flags\flag.sqf
if (isServer) then {
_vehicle_4 = objNull;
if (true) then
{
_this = createVehicle ["FlagCarrierWhite_EP1", [6354.6543, 7792.2114, -0.00012207031], [], 0, "CAN_COLLIDE"];
_vehicle_4 = _this;
_this setDir 127.06387;
_this setPos [6354.6543, 7792.2114, -0.00012207031];
_this setFlagTexture 'flag.jpg';
};
};
I call the above from the init.sqf
[]execVM "signs_flags\flag.sqf";
Edited by Thug
[SOLVED]