Arma 3
Not enough ratings
ArmaPlace: Objects moving
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod
Mod Type: Mechanics
File Size
Posted
Updated
53.948 KB
19 Dec, 2016 @ 12:37am
23 Dec, 2016 @ 4:43pm
6 Change Notes ( view )

Subscribe to download
ArmaPlace: Objects moving

Description
Note: This mod is designed to work only in multiplayer mode.

Allows for players of your server to move objects, listed in settings on server side.
Works in underwater as well as on the ground.

Installation:
1. Connect mod on server.
2. Connect mod on client.
3. Add this lines on server side to the end of your init.sqf:

if (isServer) then {
AP_OM_Server_Types = [
/* Enlist here all the types of the objects you want to allow players to move. */
];
AP_OM_Server_Radius = 20; // radius (in meters) that will be scanned with a time period, defined below.
AP_OM_Server_Period = 10; // time period (in seconds) to scan for a boxes around to put the menu item on them.
publicVariable "AP_OM_Server_Types";
publicVariable "AP_OM_Server_Radius";
publicVariable "AP_OM_Server_Period";
};
8 Comments
ARCHaim  [author] 15 Jun, 2017 @ 11:52am 
It should be runned on both server and client side.
Oatis 13 Jun, 2017 @ 11:54am 
BTW, I really like the fact that you bundled these together, wish more modders would do that.
Oatis 13 Jun, 2017 @ 10:43am 
So, does everyone have to run this or just server?
ARCHaim  [author] 8 May, 2017 @ 4:57pm 
Thanks, Bruce. I'll provide some in future.
Oatis 8 May, 2017 @ 4:40pm 
Yea, needs a little more instructions and may a simple included mission with init.sqf file that you use.
Oatis 7 May, 2017 @ 1:26pm 
Looks cool, looking forward to trying this out!
ARCHaim  [author] 8 Mar, 2017 @ 3:56am 
Hi, Ryan.
You should wrap every enlisted object type into quotes.
Ryan 7 Mar, 2017 @ 10:52pm 
Hi, just tried it and it seems like this has great potential. Can we get some more info, please? I am not sure the format of the "types" of things that can be moved. I have tried this:

AP_OM_Server_Types = [
A3_Structures,
Structures,
Container,
Structures_Military
];

When I am in game, I get the option to "pick up" and on, for example, the "Beach Booth" the name actually appears so I think that must be in the Structures or A3_Structures type, so we are getting there. However, on selecting pick up / put down, nothing happens!

Also:

// radius (in meters) that will be scanned with a time period, defined below.

Not sure what this means? Does this mean if you are within [metres] of an object, you will get the chance to pick it up?


Basically I would like to know the correct format for the "types" please, and any idea why the option is appearing, but the object itself is clearly not moving.

Thanks!