Arma 3
Ikke nok vurderinger
ArmaPlace: Objects moving
   
Pris
Føj til foretrukne
Gjort til foretrukken
Fjern som foretrukken
Data Type: Mod
Mod Type: Mechanics
Filstørrelse:
Offentliggjort:
Opdateret:
53.948 KB
19. dec. 2016 kl. 0:37
23. dec. 2016 kl. 16:43
6 ændringsbemærkninger ( vis )

Abonner for at downloade
ArmaPlace: Objects moving

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