-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add zeus arsenal modules * Add french strings to arsenal modules * Fix typo in french string * Make changes to fit review * locality check, use showMessage, set categroy
- Loading branch information
1 parent
cff86c3
commit 5dc8859
Showing
6 changed files
with
104 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Author: alganthe | ||
* Add a full arsenal to an object | ||
* | ||
* Arguments: | ||
* 0: The module logic <OBJECT> | ||
* | ||
* Return Value: | ||
* None | ||
* | ||
* Public: No | ||
*/ | ||
#include "script_component.hpp" | ||
|
||
params ["_logic"]; | ||
if (!local _logic) exitWith {}; | ||
|
||
private _object = attachedTo _logic; | ||
TRACE_3("moduleAddArsenal",_logic,_object,typeOf _object); | ||
|
||
switch (true) do { | ||
case (isNull _object): { | ||
[LSTRING(NothingSelected)] call FUNC(showMessage); | ||
}; | ||
case (isPlayer _object): { | ||
["str_a3_cfgvehicles_moduleremotecontrol_f_errorPlayer"] call FUNC(showMessage); | ||
}; | ||
case (!alive _object): { | ||
[LSTRING(OnlyAlive)] call FUNC(showMessage); | ||
}; | ||
default { | ||
TRACE_1("BIS_fnc_arsenal: AmmoboxInit",_object); | ||
// Global Effects: "Action to access the Arsenal will be added automatically on all clients." | ||
["AmmoboxInit", [_object, true]] call BIS_fnc_arsenal; | ||
}; | ||
}; | ||
|
||
deleteVehicle _logic; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Author: alganthe | ||
* Remove arsenal from an object | ||
* | ||
* Arguments: | ||
* 0: The module logic <OBJECT> | ||
* | ||
* Return Value: | ||
* None | ||
* | ||
* Public: No | ||
*/ | ||
|
||
#include "script_component.hpp" | ||
|
||
params ["_logic"]; | ||
if (!local _logic) exitWith {}; | ||
|
||
private _object = attachedTo _logic; | ||
TRACE_3("moduleRemoveArsenal",_logic,_object,typeOf _object); | ||
|
||
switch (true) do { | ||
case (isNull _object): { | ||
[LSTRING(NothingSelected)] call FUNC(showMessage); | ||
}; | ||
case (isPlayer _object): { | ||
["str_a3_cfgvehicles_moduleremotecontrol_f_errorPlayer"] call FUNC(showMessage); | ||
}; | ||
case (!alive _object): { | ||
[LSTRING(OnlyAlive)] call FUNC(showMessage); | ||
}; | ||
default { | ||
TRACE_1("Calling removeVirtualXXXCargo functions",_object); | ||
[_object, (_object call BIS_fnc_getVirtualItemCargo), true] call BIS_fnc_removeVirtualItemCargo; | ||
[_object, (_object call BIS_fnc_getVirtualWeaponCargo), true] call BIS_fnc_removeVirtualWeaponCargo; | ||
[_object, (_object call BIS_fnc_getVirtualMagazineCargo), true] call BIS_fnc_removeVirtualMagazineCargo; | ||
[_object, (_object call BIS_fnc_getVirtualBackpackCargo), true] call BIS_fnc_removeVirtualBackpackCargo; | ||
}; | ||
}; | ||
|
||
deleteVehicle _logic; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters