Client notifications
ShowNotify
exports["rtx_housing"]:ShowNotify({
title = "House Purchased",
text = "You have successfully purchased this property.",
type = "success", -- success / error / info
timeout = 5000
})ShowHelpNotify
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" }
}
})Last updated