Skip to main content

CloudVariables.PushEvent(string name, any value, string worldLocation, string detail, boolean publicViewable)

Create a new event.

Parameters:

NameTypeDescription
namestringThe name of the event
valueanyThe value that may associated with the event.
worldLocationstringThe world location that may associated with the event.
detailstringThe extra detail about the event.
publicViewablebooleanIs this event publicly viewable?

Usage

---@type string
local name;

---@type any
local value;

---@type string
local worldLocation;

---@type string
local detail;

---@type boolean
local publicViewable;


CloudVariables:PushEvent(name, value, worldLocation, detail, publicViewable)