Event
Events are triggers that are in charge of executing actions
An event is what we call a trigger. Let's say that once a user comments, likes, sends gifts, shares your live, follows you, or even just joins the live, it triggers an event and then this event triggers the actions that are registered.
Events contain 3 properties
events:
event_example: #Here is an example of how it is used in the scripts
event_type: CHAT
event_goal: ...
actions: action_test
event_type (T): This will decide which action of a user in your live will trigger this event.
event_goal (G): This conditions the event that is about to be triggered. That is, if there are conditions, the event will not be triggered until its goal is met first.
actions (A): This will be the action that is executed once the conditions have been met or the event has simply been triggered.
TYPES
LIKE
β
β
β
β
NEW_FOLLOWER
β
β
β
β
SHARE
β
β
β
β
GIFT
β
β
β
β
CHAT
β
β
β
β
NEW_VIEWER
β
β
β
β
SUBSCRIPTION
β
β
β
β
REDEEM_POINTS
β
β
β
β
RAID
β
β
β
β
HOST
β
β
β
β
BITS
β
β
β
β
Last updated