meta.cpp – Arma 3
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[[Cc]ategory:ArmA:[ _]?([^|]+)\]\]" to "{{GameCategory|arma1|$1}}") |
Lou Montana (talk | contribs) m (Remove GVI categorisation) |
||
Line 1: | Line 1: | ||
{{GVI|Arma 3|1.54 | {{GVI|Arma 3|1.54}} | ||
'''Meta.cpp''' file contains additional information about mods published on Steam Workshop. | '''Meta.cpp''' file contains additional information about mods published on Steam Workshop. | ||
Line 53: | Line 53: | ||
[[Category:Introduced with Arma 3 version 1.54]] | |||
[[Category:BIS_File_Formats]] | [[Category:BIS_File_Formats]] | ||
{{GameCategory|arma1|_Addon_Configuration}} | {{GameCategory|arma1|_Addon_Configuration}} | ||
{{GameCategory|arma3|Editing}} | {{GameCategory|arma3|Editing}} |
Revision as of 00:31, 25 February 2021
Meta.cpp file contains additional information about mods published on Steam Workshop. This file is automatically created when a mod is published by Arma 3 Publisher to Steam Workshop.
Attributes
Key | Required | Meaning |
---|---|---|
protocol | Yes | Version of meta.cpp file content. |
publishedId | No | Steam Workshop identifier for the mod. If this id is filled in on a server, Arma 3 Launcher set up this mod when user connects to that server. |
name | No | Steam Workshop item name. |
timestamp | No | Time of last mod update in .NET Framework ticks time format (10,000 ticks = 1 millisecond). |
hashOverride | No | Mod hash override that is send by the server to the client instead of the hash calculated from real mod. The override hash can be calculated by ModHashCalculator. |
Example
/// Version of meta.cpp content
protocol = 1;
/// Steam Workshop item id
publishedid = 123456790;
/// Steam Workshop item name
name = "Splendid mod";
/// Time of last update of the Steam Workshop Item (in .NET Framework time format)
timestamp = 9876432101234567890;
/// Mod hash that is send by the server to the client instead of calculated hash)
hashOverride = 1234567890;