Arma 3
Evaluări insuficiente
ArmaPlace: Objects moving
   
Premiază
Adaugă la preferate
Preferat
Elimină din preferate
Data Type: Mod
Mod Type: Mechanics
Dimensiunea fișierului
Postat
Actualizat
53.948 KB
19 dec. 2016 la 0:37
23 dec. 2016 la 16:43
6 jurnale de actualizare ( vizionare )

Abonează-te pentru a descărca
ArmaPlace: Objects moving

Descriere
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 comentarii
ARCHaim  [autor] 15 iun. 2017 la 11:52 
It should be runned on both server and client side.
Oatis 13 iun. 2017 la 11:54 
BTW, I really like the fact that you bundled these together, wish more modders would do that.
Oatis 13 iun. 2017 la 10:43 
So, does everyone have to run this or just server?
ARCHaim  [autor] 8 mai 2017 la 16:57 
Thanks, Bruce. I'll provide some in future.
Oatis 8 mai 2017 la 16:40 
Yea, needs a little more instructions and may a simple included mission with init.sqf file that you use.
Oatis 7 mai 2017 la 13:26 
Looks cool, looking forward to trying this out!
ARCHaim  [autor] 8 mart. 2017 la 3:56 
Hi, Ryan.
You should wrap every enlisted object type into quotes.
Ryan 7 mart. 2017 la 22:52 
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!