武装突袭3

武装突袭3

938 个评价
Seb's Briefing Table
32
7
13
8
12
2
2
5
4
4
3
2
2
2
   
奖励
收藏
已收藏
取消收藏
Data Type: Mod
文件大小
发表于
更新日期
30.871 KB
2021 年 3 月 12 日 下午 5:18
2021 年 3 月 14 日 下午 12:52
2 项改动说明 ( 查看 )

订阅以下载
Seb's Briefing Table

在 Seb 的 1 个合集中
Seb's Mods
11 件物品
描述
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.
151 条留言
Baker 8 月 10 日 上午 7:53 
Since the last Arma Update Briefing table not working anymore. No objects are shown, no terrain cubes are shown.
Blackbird Ater 6 月 27 日 上午 10:00 
Making markers in Zeus is really challenging as described in the Q&A above about changing mid-mission
Free2u2 2024 年 12 月 29 日 下午 12:18 
how can I get this to work with zeus? Im trying to play antistasi with this and im struggling with the markers
Karlkarl93 2024 年 12 月 25 日 上午 8:18 
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 2024 年 9 月 21 日 下午 5:54 
Does this need to be loaded on client side? Or is loading on server sufficient?
(FLIC) Tuusol☭ 2024 年 6 月 13 日 上午 7:01 
@EpiicPenguin is a saint, would never have figured this mod out otherwise
notsphaggi 2024 年 3 月 26 日 下午 11:37 
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 2023 年 9 月 16 日 上午 9:14 
Firstly, excellent creation! Secondly, is there a way to change the texture of the displayed objects to appear more as a holographic?
Play3r 2023 年 7 月 3 日 上午 11:40 
@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 2023 年 7 月 3 日 上午 11:31 
@ 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.