maca134
Well-Known Member
Dialogs:
This one is just an example of using any item



This one is just an example of using any item

Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[] execVM "custom\building_view.sqf"; //building birds eye view
BUILD_camera_mode = 0;
BUILD_player_camera = cameraView;
showCinemaBorder false;
BUILD_switch_camera = {
if (BUILD_camera_mode == 0) then {
cutText ["Build Camera Active.", "PLAIN DOWN"];
BUILD_camera = "camera" camCreate [0,0,0];
BUILD_camera cameraeffect ["internal", "back"];
BUILD_camera camsettarget player;
BUILD_camera camsetrelpos [0,10,20];
BUILD_camera camcommit 0;
BUILD_camera_mode = 1;
} else {
cutText ["Build Camera Disabled.", "PLAIN DOWN"];
BUILD_camera cameraeffect ["terminate", "back"];
camdestroy BUILD_camera;
player switchCamera BUILD_player_camera;
BUILD_camera_mode = 0;
};
true;
};
This has not been released yet... and it will work with any dayz mod (probably)