mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
30 lines
626 B
Plaintext
30 lines
626 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: esteldunedain
|
|
* Take full path and split it between parent path and action name
|
|
*
|
|
* Arguments:
|
|
* Full path of the action to remove <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* 0: Parent path <ARRAY>
|
|
* 1: Action name <STRING>
|
|
*
|
|
* Example:
|
|
* [[path]] call ACE_interact_menu_fnc_splitPath
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
private _parentPath = [];
|
|
for [{private _i = 0},{_i < (count _this) - 1},{_i = _i + 1}] do {
|
|
_parentPath pushBack (_this select _i);
|
|
};
|
|
private _actionName = if (count _this > 0) then {
|
|
_this select ((count _this) - 1);
|
|
} else {
|
|
""
|
|
};
|
|
|
|
[_parentPath, _actionName]
|