Natives UISTICKYFEED 0xBC6F454E310124DA void _UI_STICKY_FEED_UPDATE_MESSAGE (int msgId, Any* p1, BOOL p2); Documentation Community 0
Property
Value
Native Name
_UI_STICKY_FEED_UPDATE_MESSAGE
Hash
0xBC6F454E310124DA
Return Type
void
Build
1207
API Set
client
Parameters
msgId (int), p1 (Any*), p2 (BOOL)
Description: Seems to only update _UI_STICKY_FEED_CREATE_ERROR_MESSAGE(0x9F2CC2439A04E7BA) and _UI_STICKY_FEED_CREATE_DEATH_FAIL_MESSAGE(0x815C4065AE6E6071) message.
Example: https://pastebin.com/nDrJyWq2
Usage
Lua (Direct):
UiStickyFeedUpdateMessage(msgId, p1, p2)
Lua (Hash):
Citizen.InvokeNative(0xBC6F454E310124DA, msgId, p1, p2)
Back to UISTICKYFEED Before you callAny* params are caller-supplied struct/array buffers (not scalar Pointer placeholders): build one with DataView.ArrayBuffer(8*N) and write every field — even Int32/BOOL — at zero-based, little-endian, 8-byte-aligned offsets, then pass view:Buffer(); consult the native's struct definition / linked findings for which fields are inputs vs outputs (read outputs back with GetInt32/GetInt64 at the same 8-byte stride) and whether each field is a CreateVarString-wrapped text field (UIFEED toast structs) or just a plain int / joaat hash — see get_invoke_guide. (see findings: learning:9, learning:48, learning:57, learning:58, learning:59, learning:81 — fetch via get_document)
Let your AI read the fine print. Native signatures, warnings, and community context. Directly in your editor.
Connect via MCP