Jump to content
Sign in to follow this  

Recommended Posts

Hello everyone!

I am trying to add Bunk Beds in Tents for my FOB Template, but can not seem to find them in the Editor, or in none of the Editor Updates, but I know they are in game as they are used in the Barracks Huts!

How would I go about adding them into my Template? I would try the Create Vehicle/Object(?) command but I am not sure of thier classname and could not find them in the configs for the game? Any idea of how I should go about this?

Dave,

Share this post


Link to post
Share on other sites

I suspect the bunk beds to be a part of the barracks object and not a single object, however, to find out what types of objects are around you in say a 5m radius:

place a radio trigger with this in on act field:

diag_log format["%1",(nearestObjects [player, [], 5])]; hint "done, check rpt file";

place a unit near baracks and walk up to the bunk bed and activate the radio trigger, if you just get up alot of ids, use this code below instead:

_null = [] spawn {
_objets = nearestObjects [player, [], 5];
_types = [];
{_types = _types + [(typeOf _x)]} foreach _objets;
diag_log format["%1",_types];
hint "done, check rpt file";
};

results will end up in your .rpt file.

Share this post


Link to post
Share on other sites

I'd suggest you to download the ACE mod, as it adds in the editor objects like the beds. However they've extract them from the game files I think, so maybe you could do the same thing.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×