Arma 3
933 ratings
Seb's Briefing Table
31
7
13
8
12
2
2
5
4
4
3
2
2
2
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod
File Size
Posted
Updated
30.871 KB
12 Mar, 2021 @ 5:18pm
14 Mar, 2021 @ 12:52pm
2 Change Notes ( view )

Subscribe to download
Seb's Briefing Table

In 1 collection by Seb
Seb's Mods
11 items
Description
For all your tacticool planning needs!

Any area, any table, any map. This mod provides some scripting functions which can turn any table, and any area on the map, into a minified representation. Custom-placed objects included!

Also contained in the mod folder is a standalone mission template which allows you to use the mod WITHOUT the server or its players needing to install anything. It also functions as a demonstration of how to use the features of the mod. Both the mod and this mission have the same features.

Features:
- Any size of area can fit into any table, it's all handled for you
- Creates buildings where they are in the real map
- Also works for custom buildings placed in editor.
- Roughly matches terrain, as best as the game allows
- Can scale to fit multiple tables
- Multiple tables can display the same or different areas.
- Doesn't display REALLY small stuff, to keep the lag down.
- Hidden objects are hidden (with a bit of extra work, see examples section)
- Standalone version contained within mod folder, so you can use this without running this mod.

HOW TO USE:

The mod provides 2 scripting functions:
sebs_briefing_table_fnc_createTable and sebs_briefing_table_fnc_clearTable

First, place a table. Then use an AREA marker in the editor to cover the area you want to create a table for. Give the area marker a custom name, or just remember what it is called.

Using fnc_createTable the parameters are:
0: Table on which to create the minified representation. If a minified representation already exists, it will be cleared before starting. <OBJECT>
1: AREA marker string representation (i.e "marker_0") <STRING>
2: Optional <NUMBER> (default: 20) - Terrain resolution (x*y resolution of terrain cubes). Setting this too high will be VERY laggy.
4: Optional <NUMBER> (default: 1) - Scale multiplier. 3 = map is 3x the size of the table. Useful for spanning multiple tables.
4: Optional <BOOL> (default: true). Use terrain. If false then the map will be entirely flat. Just like the earth ;)
5: Optional <BOOL> (default: true) - Create environment sounds trigger:
Create a trigger that disables environmental sounds when the current unit comes near, and puts it back to its original state when the player leaves.
This is because all the bushes that appear on the table will still play cricket sounds, buildings will play air conditoner hums etc
6: Optional <NUMBER> (default: 0) - Offset Z height. If your map doesn't fit on your table quite right, use this to tweak how high the entire thing shows up.

All script effects are local.

In order for hidden objects to actually be hidden, the function must be called after mission start. See the example mission for how to do this.

EXAMPLES
TABLE OBJECT INIT (Multiplayer and join in progress compatible)
[this, "marker_0", 20, 1, true, true, 0] call sebs_briefing_table_fnc_createTable;

SCRIPT CALL (Multiplayer and join in progress compatible):
NEVER EVER EVER REMOTEXEC FROM OBJECT INIT!
IF YOU DON'T UNDERSTAND WHAT I MEAN USE THE FIRST EXAMPLE

[table, "marker_0", 20, 1, true, true, 0] remoteExecCall ["sebs_briefing_table_fnc_createTable", 0, table];


To clear a table:
Simply call fnc_clearTable with the table as an argument, and a JIP argument:
[YOUR_TABLE_VARIABLE] remoteExecCall ["sebs_briefing_table_fnc_clearTable", 0, YOUR_TABLE_VARIABLE];

FAQ:

Q: Can you do a setup video?
A: Read the ♥♥♥♥♥♥♥ manual.

Q: Does this work in multiplayer?
A: Yes.

Q: Do editor-placed objects appear?
A: Statics like buildings, walls, defenses do. Vehicles, units do not.

Q: Can the table be changed mid mission?
A: Yes, however creating a marker for a 'new' area is hard as it's hard to know the name of the area marker created. Consider setting up the markers ahead of time, and noting their names.

Looking for an Arma community? Check CNTO out:

https://www.carpenoctem.co/

https://www.youtube.com/watch?v=QE8tMdhDYjI

Please report any issues, or feature requests to this projects Github:
https://github.com/Seb105/Arma-Briefingtable

Special thanks to Leopard20 for some contributions to the code.
150 Comments
Blackbird Ater 27 Jun @ 10:00am 
Making markers in Zeus is really challenging as described in the Q&A above about changing mid-mission
Free2u2 29 Dec, 2024 @ 12:18pm 
how can I get this to work with zeus? Im trying to play antistasi with this and im struggling with the markers
Karlkarl93 25 Dec, 2024 @ 8:18am 
Server side is sufficient. It needs to be mainly loaded into the mission folder itself, as it can be run standalone. (Per description/manual)
CarbonCola 21 Sep, 2024 @ 5:54pm 
Does this need to be loaded on client side? Or is loading on server sufficient?
(FLIC) Tuusol☭ 13 Jun, 2024 @ 7:01am 
@EpiicPenguin is a saint, would never have figured this mod out otherwise
notsphaggi 26 Mar, 2024 @ 11:37pm 
Awesome mod, would be cool if you somehow figured out a way to put like little pins or markers on the table so that others can see exactly what you are referencing
Aurora 16 Sep, 2023 @ 9:14am 
Firstly, excellent creation! Secondly, is there a way to change the texture of the displayed objects to appear more as a holographic?
Play3r 3 Jul, 2023 @ 11:40am 
@mevadralik

Yes i work in MP.

Yes Editor placed objects do appear.

To clear the table use this.
[YOUR_TABLE_VARIABLE] remoteExec ["sebs_briefing_table_fnc_clearTable", 0, YOUR_TABLE_VARIABLE];

just give the Table a VariableName and put that in the YOUR_TABLE_VARIABLE.
Play3r 3 Jul, 2023 @ 11:31am 
@ mevadralik

[this, "marker_0", 20, 1, true, true, 0] call sebs_briefing_table_fnc_createTable;
/\ put this line in side the Table INIT field.
Make a Marker called marker_0 and make it cover the area you want to show on table.
mevadralik 3 Jul, 2023 @ 12:40am 
i got a couple questions
1 can u do setup videos?
2does thiswork in mp??
3do editor place opject apear?
4can tblae cheng mid mision??