You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `instance` parameter is identical to `instance` in [actor control line)](#line33).
1920
+
The first two bytes are the update type
1921
+
and the second two bytes are ids in the [InstanceContent table](https://github.com/xivapi/ffxiv-datamining/blob/master/csv/InstanceContent.csv).
1922
+
1923
+
The `id` parameter is an id into the [LogMessage table](https://github.com/xivapi/ffxiv-datamining/blob/master/csv/LogMessage.csv).
1924
+
1925
+
id (hex) | Link | Shortened Message
1926
+
--- | --- | ---
1927
+
0x2EE | [link](https://xivapi.com/LogMessage/750?pretty=true) | You obtain (an item)
1928
+
0x7DC | [link](https://xivapi.com/LogMessage/2012?pretty=true) | will be sealed off in X seconds
1929
+
0x7DD | [link](https://xivapi.com/LogMessage/2013?pretty=true) | is sealed off
1930
+
0x7DE | [link](https://xivapi.com/LogMessage/2014?pretty=true) | is no longer sealed
1931
+
1932
+
The log message itself determines the other parameters.
1933
+
It seems that `IntegerParameter(1)` in the log message corresponds to `param1`
1934
+
and `IntegerParameter(2)` corresponds to `param2`.
1935
+
It is not clear what `param0` does or how other `Parameter` functions work.
00|2022-01-11T16:28:50.0000000-08:00|0839||The shell mound will be sealed off in 15 seconds!|3a0befeef04e203b^M
1942
+
```
1943
+
1944
+
`80030054` is the instance.
1945
+
`8003` means instanced content.
1946
+
(`8004` means trust content.)
1947
+
`0054` is the [InstanceContent](https://xivapi.com/InstanceContent/84?pretty=true) id,
1948
+
so this is The Dead Ends.
1949
+
1950
+
`7DC` is the `id`, which [corresponds](https://xivapi.com/LogMessage/2012?pretty=true) to:
1951
+
`"<Clickable(<SheetEn(PlaceName,2,IntegerParameter(1),2,1)\/>)\/> will be sealed off in <Value>IntegerParameter(2)<\/Value> <If(Equal(IntegerParameter(2),1))>second<Else\/>seconds<\/If>!"`
1952
+
1953
+
Use the log message itself to determine what `param1` and `param2` mean, if anything.
1954
+
1955
+
In this case,
1956
+
`param1` is `1008`, which from the log message you can determine is a PlaceName id.
1957
+
Looking this up in the [PlaceName](https://xivapi.com/PlaceName/4104?pretty=true) table gets "Shell Mound".
1958
+
1959
+
`param2` is `0x0F`, which from the log message is used for the seconds in the message, i.e. 15 in decimal.
0 commit comments