Skip to content

prominentalex/WPDs-Action-Menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

WPD's Action Menu

Picture comming soon

Install Instructions

  1. Download the Zip File

    Recommended PBO tool for all "pack", "repack", or "unpack" steps: PBO Manager

  2. Log into your server via FTP or your host's File Manager. Locate, download, and unpack (using PBO Manager or a similar PBO editor) your MPMissions/Your_Mission.pbo, and open the resulting folder.

    Note: "Your_Mission.pbo" is a placeholder name. Your mission might be called "DayZ_Epoch_11.Chernarus", "DayZ_Epoch_13.Tavi", or "dayz_mission" depending on hosting and chosen map.

  3. Extract the ActionMenu folder from the project zip into the root of your mission folder.

  4. Open the init.sqf in the root of your mission folder and paste the following at the bottom:

    // WPD's Action Menu
    [] execVM "ActionMenu\actionmenu_activate.sqf";
  5. Navigate to your BattlEye folder, open createvehicle.txt and add the following to THE END of line 2

    // WPD's Action Menu
    !="USVehicleBox"
  6. Locate your @DayZ_Epoch_Server/addons/dayz_server.pbo on your server host, download and unpack it, and open the resulting dayz_server folder.

  7. Open init/server_functions.sqf and replace this:

        if(vehicle _x != _x && !(vehicle _x in PVDZE_serverObjectMonitor) && (isPlayer _x)  && !((typeOf vehicle _x) in DZE_safeVehicle)) then {

    ...with this:

        if(vehicle _x != _x && !(vehicle _x in PVDZE_serverObjectMonitor) && (isPlayer _x)  && !((typeOf vehicle _x) in DZE_safeVehicle) && (vehicle _x getVariable ["MalSar",0] !=1)) then {

    Note: This step may not work well if you use other mods that modify this operator. The important code to fit into this operator is (vehicle _x getVariable ["MalSar",0] !=1) which can be added easily with a rudimentary knowledge of programming.

    1. Now open your compile/server_updateObject.sqf and place this:
    // Epoch Admin Tools
    if (_object getVariable "MalSar" == 1) exitWith {};

    ...immediately above this:

    if (!_parachuteWest and !(locked _object)) then {
  8. Repack the server pbo and upload it to your server.

####IF you are using special antihack add the following to your AHconfig.sqf

~~~~java
,'#USER:ActionMenu','#USER:ActionMenua','#USER:SkyMenu','#USER:FogMenu','#USER:SkyMenu2','#USER:FogMenu2','#USER:_DeployMenu'
~~~~

About

A fully customizable scroll menu for player actions in game. It comes with a stock set of tools that can be removed or customized as the user likes.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published