Vixio - The best Discord addon on the Market

Addon Vixio - The best Discord addon on the Market 2.0.7

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Osy4qnZ.png

Vixio, the Skript addon created to fit all of your Discord needs.
Discord Server: https://discord.gg/9xQUk2d
Github: https://github.com/iBlitzkriegi/Vixio
Website: http://www.vixio.space/
109.png

This update brings a few new effect to send embeds and a new expression. Mostly released because the play effect is now faster, smoother, and more reliable.
Dp12L0y.png

The play effect is now 110% more reliable. Otherwise, there's nothing else changed!
BKKEQWh.png

New Effect(s)
Code:
send embed %string% to user %user% with %string%
New Expression(s)
Code:
volume of player [named] %string%
mBpVyS5.png

1) Add Reaction support for messages
2) Make more User oriented events
3) Update all syntaxes to be more "New Skripter" friendly!
VK7waLk.png

code_language.skript:
on guild message receive seen by "Rawr":
    set {_args::*} to event-string split at " "
    set {_command} to {_args::1}
    remove {_args::1} from {_args::*}
    if {_command} starts with "$nowplaying":
        clear embed "Nowplaying"
        make embed "Nowplaying"
        set title of embed "Nowplaying" to "Displaying information for the track that is currently playing"
        set color of embed "Nowplaying" to "PINK"
        add field "**Name**", with value "%title of track {ptsd}%", split true to embed "Nowplaying"
        add field "**Identifier**", with value "%identifier of track {ptsd}%", split true to embed "Nowplaying"
        add field "**Author**", with value "%author of track {ptsd}%", split true to embed "Nowplaying"
        add field "**Time**", with value "%position of track {ptsd}%", split true to embed "Nowplaying"
        add field "**Duration**", with value "%duration of track {ptsd}%", split true to embed "Nowplaying"
        add field "**Link to Audio**", with value "[%title of track {ptsd}%](%{playing}%)", split true to embed "Nowplaying"
        send embed "Nowplaying" to user event-channel with "Rawr"