Aller au contenu principal

btcsky_member_promoted_event

When a member is promoted — event entry.

Entry Information

PropertyValue
Entry IDbtcsky_member_promoted_event
TypeEvent
ColorCyan
Iconfa6-solid:arrow-up

Description

Event that fires when a coop invitation is sent. / @Tags("btcsky", "event") @Entry("btcsky_coop_invite_sent_event", "When a coop invitation is sent", Colors.PURPLE, "fa6-solid:paper-plane") class CoopInviteSentEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a coop invitation is accepted. / @Tags("btcsky", "event") @Entry("btcsky_coop_invite_accepted_event", "When a coop invitation is accepted", Colors.GREEN, "fa6-solid:handshake") class CoopInviteAcceptedEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a coop invitation is declined. / @Tags("btcsky", "event") @Entry("btcsky_coop_invite_declined_event", "When a coop invitation is declined", Colors.RED, "fa6-solid:user-xmark") class CoopInviteDeclinedEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a coop partner leaves the island. / @Tags("btcsky", "event") @Entry("btcsky_coop_partner_left_event", "When a coop partner leaves", Colors.ORANGE, "fa6-solid:person-walking-arrow-right") class CoopPartnerLeftEventEntry( override val id: String = "", override val name: String = "", override val triggers: List<Ref<TriggerableEntry>> = emptyList() ) : EventEntry /** Event that fires when a member is promoted.