Résultats de la recherche

Vider
Événements
Conditions
Effets
Expressions
Types
Fonctions
Sections

Roles of Guild (Rôles de la guild)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir tout les rôles de la guild.

Exemples discord command $roles:
    trigger:
        reply with "Voici tout les rôles de la guild: `%roles of event-guild%`"
Pattern [the] role[s] of %guild% %guild%'[s] role[s]

Text Channels of (Salon textuel de)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir tout les salons textuels de la guild ou d'une catégorie.

Exemples discord command $channels [<text>]:
    trigger:
        if arg-1 is not set:
            reply with "Here are the current channels: `%channels of event-guild%`"
            stop
        set {_category} to category named arg-1
        reply with "Here are the channels of the category named %arg-1%: `%channels of {_category}%`"
Pattern [the] text(-| )channel[s] of %guild/category% %guild/category%'[s] text(-| )channel[s]

Voice Channels (Salons vocaux)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir tout les salons vocaux de la guild ou d'une catégorie.

Exemples on guild message receive:
    set {_channels::*} to voice channels of event-guild
        loop {_channels::*}:
            broadcast "%name of loop-value%"
Pattern [the] voice[(-| )]channels of %guild/category% %guild/category%'[s] voice[(-| )]channels

Color of Role (Color du rôle)

Compatible depuis Vixio Inconnu

Description

Permet de définir la couleur d'un rôle.

Exemples set the color of {_role} to red with event-bot
Pattern [the] colo[u]r[s] of %roles% %roles%'[s] colo[u]r[s]

Nickname of (Pseudonyme de)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir le pseudonyme d'un membre.

Exemples set the discord nickname of event-member to "Vixio" with event-bot
Pattern [the] discord nickname[s] of %members% %members%'[s] discord nickname[s]

Roles of Member (Rôles d'un membre)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir tout les rôles d'un membre. Tu peux lui en rajouter ou lui en retirer.

Exemples remove role with id "6110981981981" from roles of event-member
Pattern [the] role[s] of %members% %members%'[s] role[s]

Voice Channel of Member (Salon vocal d'un membre)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir le salon vocal oû se trouve un membre.

Exemples join voice channel of event-member
Pattern [the] [current] voice[(-| )]channel of %members% %members%'[s] [current] voice[(-| )]channel

Embed of Message Builder (Embed d'un message)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir l'embed d'un message, tu peux définir, supprimer ou réintialiser l'embed.

Exemples discord command $build:
trigger:
        make embed:
            add field with value "Bonjour, voici un embed !" to the embed
            set color of the embed to red
        set {e} to a new message builder
        set text of {e} to "Là: %nl%"
        set embed of {e} to last embed
        append "Information de l'embed attaché à ce build: %color of embed of {e}%" to {e}
        send {e} to event-channel with event-bot 
Pattern [the] embed[s] of %messagebuilders% %messagebuilders%'[s] embed[s]

Text of a message builder (Text d'un message)

Compatible depuis Vixio Inconnu

Description

Permet d'obtenir le texte à l'intérieur d'un créateur de message.

Exemples command /build:
trigger:
    set {e} to a new message builder
    set text of {e} to "Salut, regare ça:"
    broadcast "%text of {e}%"
Pattern the] [<stripped>] text[s] of %messagebuilders% %messagebuilders%'[s] [<stripped>] text[s]

Message Builder

Compatible depuis Vixio Inconnu

Description

Créer un nouveau créateur de message.

Exemples set {e} to a new message builder
Pattern a [new] message builder