Skip to content

Instantly share code, notes, and snippets.

View Senexis's full-sized avatar

Senexis

View GitHub Profile
@Senexis
Senexis / transaction_feed.md
Last active March 2, 2026 21:33
Transaction research

Transaction Feed

image

The transaction feed is a UI element that shows up in the middle right of the screen, and is used to show transactions such as looting an item, gaining XP, and receiving cash.

Config data

  • Duration: The duration in ms to show the transaction for
  • Sound set: The sound set to use (set to 0 or empty to use default)

Sticky Feeds

Note, the following examples require dataview and the following:

function BigInt(text)
    local string1 = DataView.ArrayBuffer(16)
    string1:SetInt64(0, text)
    return string1:GetInt64(0)
end
@Senexis
Senexis / toasts.md
Last active January 13, 2026 15:19
Toast research

Toasts

Note, the following examples require dataview and the following:

function BigInt(text)
    local string1 = DataView.ArrayBuffer(16)
    string1:SetInt64(0, text)
    return string1:GetInt64(0)
end