mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
sapper config
This commit is contained in:
parent
7a6bcc6088
commit
ce2d5b267a
@ -188,6 +188,8 @@ class Epoch_Char_base_F : Civilian
|
|||||||
};
|
};
|
||||||
class Epoch_Sapper_base_F: Civilian2
|
class Epoch_Sapper_base_F: Civilian2
|
||||||
{
|
{
|
||||||
|
moves = "CfgMovesMaleSdr2";
|
||||||
|
gestures = "CfgGesturesSapper";
|
||||||
faceType = "Default";
|
faceType = "Default";
|
||||||
side = 4;
|
side = 4;
|
||||||
faction = "CIV_F";
|
faction = "CIV_F";
|
||||||
|
@ -1,7 +1,29 @@
|
|||||||
|
/*
|
||||||
|
Author: Aaron Clark - EpochMod.com
|
||||||
|
|
||||||
|
Contributors:
|
||||||
|
|
||||||
|
Description:
|
||||||
|
Cleanup server side temp spawned objects by players
|
||||||
|
|
||||||
|
Licence:
|
||||||
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
||||||
|
|
||||||
|
Github:
|
||||||
|
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server/compile/epoch_server/EPOCH_localCleanup.sqf
|
||||||
|
|
||||||
|
Example:
|
||||||
|
_object(s) call EPOCH_localCleanup;
|
||||||
|
|
||||||
|
Parameter(s):
|
||||||
|
_this: OBJECT or ARRAY of Objects
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
NOTHING
|
||||||
|
*/
|
||||||
if (typename _this != "ARRAY") then {
|
if (typename _this != "ARRAY") then {
|
||||||
_this = [_this];
|
_this = [_this];
|
||||||
};
|
};
|
||||||
|
|
||||||
{
|
{
|
||||||
if (!isNull _x) then {
|
if (!isNull _x) then {
|
||||||
_x addEventHandler["local", {
|
_x addEventHandler["local", {
|
||||||
|
Loading…
Reference in New Issue
Block a user