Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Add this line to mission init (at bottom)
- //[] execVM "billboard\init.sqf";
- //Add images to billboard folder, and make this billboard\init.sqf
- if (isServer) then
- {
- //Add all your billboards here:
- _vehicle_4 = objNull;
- if (true) then
- {
- _this = createVehicle ["SignM_FARP_Winchester_EP1", [4955.3628, 9981.4648, 3.0517578e-005], [], 0, "CAN_COLLIDE"];
- _vehicle_4 = _this;
- _this setDir 58.512012;
- _this setVehicleInit "this setObjectTexture [0, ""billboard\0.jpg""]"; //Note filepath / name
- _this setPos [4955.3628, 9981.4648, 3.0517578e-005];
- };
- //Flags
- _vehicle_32 = objNull;
- if (true) then
- {
- _this = createVehicle ["FlagCarrierBLUFOR_EP1", [4945.8267, 9962.9805], [], 0, "CAN_COLLIDE"];
- _vehicle_32 = _this;
- _this setVehicleInit "this setFlagTexture ""flag.jpg""";
- _this setPos [4945.8267, 9962.9805];
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement