Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgVehicles/CommonActions.hpp
ebayShopper 4b1ecb4c3b Update vanilla repair action
Vanilla commit:

9bdce88f1a
2017-02-19 19:17:50 -05:00

32 lines
957 B
C++

#define ACTION_REPAIR displayName = $STR_ACTIONS_REPAIRVEH;\
displayNameDefault = $STR_ACTIONS_REPAIRVEH;\
priority = 0;\
position = "";\
showWindow = 0;\
onlyForPlayer = 1;\
shortcut = "";\
condition = "(['Repair',this] call userActionConditions)";\
statement = "this call player_repairVehicle;";\
hideOnUse = 0
#define ACTION_SALVAGE displayName = $STR_ACTIONS_SALVAGEVEH;\
displayNameDefault = $STR_ACTIONS_SALVAGEVEH;\
priority = 0;\
position = "";\
showWindow = 0;\
onlyForPlayer = 1;\
shortcut = "";\
condition = "(['Salvage',this] call userActionConditions)";\
statement = "this call player_salvageVehicle;";\
hideOnUse = 0
#define ACTION_PUSH displayName = $STR_ACTIONS_PUSH;\
displayNameDefault = $STR_ACTIONS_PUSH;\
priority = 0;\
radius = 8;\
position = "";\
showWindow = 0;\
onlyForPlayer = 1;\
shortcut = "";\
condition = "(['PushPlane',this] call userActionConditions)";\
statement = "this call player_pushPlane;"