CloudVariables.PushEvent(string name, any value, string worldLocation, string detail, boolean publicViewable)
Create a new event.
Parameters:
Name | Type | Description |
---|---|---|
name | string | The name of the event |
value | any | The value that may associated with the event. |
worldLocation | string | The world location that may associated with the event. |
detail | string | The extra detail about the event. |
publicViewable | boolean | Is 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)