Advertisement
parabola949

dayz billboards / flags

Nov 15th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Add this line to mission init (at bottom)
  2. //[] execVM "billboard\init.sqf";
  3.  
  4. //Add images to billboard folder, and make this billboard\init.sqf
  5.  
  6. if (isServer) then
  7. {
  8. //Add all your billboards here:
  9.  
  10.     _vehicle_4 = objNull;
  11. if (true) then
  12. {
  13.   _this = createVehicle ["SignM_FARP_Winchester_EP1", [4955.3628, 9981.4648, 3.0517578e-005], [], 0, "CAN_COLLIDE"];
  14.   _vehicle_4 = _this;
  15.   _this setDir 58.512012;
  16.   _this setVehicleInit "this setObjectTexture [0, ""billboard\0.jpg""]"; //Note filepath / name
  17.   _this setPos [4955.3628, 9981.4648, 3.0517578e-005];
  18. };
  19.  
  20. //Flags
  21. _vehicle_32 = objNull;
  22. if (true) then
  23. {
  24.   _this = createVehicle ["FlagCarrierBLUFOR_EP1", [4945.8267, 9962.9805], [], 0, "CAN_COLLIDE"];
  25.   _vehicle_32 = _this;
  26.   _this setVehicleInit "this setFlagTexture ""flag.jpg""";
  27.   _this setPos [4945.8267, 9962.9805];
  28. };
  29. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement