Client notifications

RTX Housing provides a UI notification style you can safely use from other resources.

ShowNotify

client/other.lua
exports["rtx_housing"]:ShowNotify({
    title   = "House Purchased",
    text    = "You have successfully purchased this property.",
    type    = "success", -- success / error / info
    timeout = 5000
})

ShowHelpNotify

client/other.lua
exports["rtx_housing"]:ShowHelpNotify({
    title = "Property Entrance",
    text  = "You are standing in front of a property.",
    icon  = "fa-solid fa-house",
    keys  = {
        { key = "E", label = "Enter Property" },
        { key = "G", label = "Ring Doorbell" }
    }
})

Hide current help notification:

Last updated