The system was created for people who wanted to have entertainment commands without learning the A.R.S. These are pre-built commands that need to be installed in your Server!
You will also have access to the snippet list inside of Discord.
Type: .snippet -list and an available list of public snippets will appear in your chat.
Now find the snippet (For Example: AntiDiscordLinks) and type: .snippet AntiDiscordLinks
And a copy of the snippet will become available for download (As long as echo can upload files)
Save the command you wish to be installed on your computer (Right click a link below and "Save link as..")
Make sure not to change the file name or this won't work!
In your Discord Server where Echo can read messages drag the downloaded file to Discord (Upload snippet file)
You will be notified if the command was installed correctly!
You can type the command and test it out!
Command | Download | Short Desc |
---|---|---|
.server | Download! | An embed server info command |
.whoami | Download! | An embed whoami command |
.sky | Download! | Random sky images |
.space | Download! | Random space images |
.dbz | Download! | Random dbz images |
.ass | Download! | Random ass images |
.boobs | Download! | Random boobs images |
.cute | Download! | Random cute images |
.cars | Download! | Random cars images |
ALL [Safe] Combined | Download! | All of these commands besides NSFW. |
_____ _ _ _____ _ ___ ___ / ____| (_) | | / ____| | | |__ \ / _ \ | (___ _ __ _ _ __ _ __ ___| |_ | (___ _ _ ___| |_ ___ _ __ ___ ) || | | | \___ \| '_ \| | '_ \| '_ \ / _ \ __| \___ \| | | / __| __/ _ \ '_ ` _ \ / / | | | | ____) | | | | | |_) | |_) | __/ |_ ____) | |_| \__ \ || __/ | | | | | / /_ | |_| | |_____/|_| |_|_| .__/| .__/ \___|\__| |_____/ \__, |___/\__\___|_| |_| |_| |____(_)___/ | | | | __/ | |_| |_| |___/
All of the information inside of this snippet is designed to help you undertstand
the new Snippet 2.0. And methods that will help you throughout this system.
[CONFIG]
user=146105465516846686
Message=What is up {/user}! Hope all is well!! :)
[/CONFIG]
.test={init}
:break unless user.id=$user
$Message
Pretty neat huh? Basically we created 2 variables
[CONFIG]
user_id={/rawid}
joinMessage=Welcome to {guild|name} <@$user_id>. We hope you enjoy your stay.
[/CONFIG]
jnEvent={init}
{Event:Join}{pm}
$joinMessage
So basically (And for no real reason at all) we stored {/rawid} into the variable "user_id"
[CONFIG]
useFooter=True
useFooterText=True
useFooterImage=True
embedTitle=Welcome {/user}!
embedDescription=Testing some stuff out with the new snippet system!
footerText=Hello, Have a good day!
footerImage=https://proxikal.github.io/Echo/favicon-new.png
[/CONFIG]
.embed={init}
{embed:
{title:$embedTitle}
{desc:$embedDescription}
[IF $useFooter == 'True']
[IF $useFooterText == 'True']{footer|text:$footerText}[/IF]
[IF $useFooterImage == 'True']{footer|icon:$footerImage}[/IF]
[/IF]
}
[TASK]
for::UserProfiles
OwnerID=1465561656835665665
OwnerName=Proxy
[/TASK]
And, done.. When the snippet is installed Echo will make 1 Database (Unless it exists already) and then install 2 variables to the database.
[TASK]
for::UserProfiles::DEFUNCT
OwnerID=1465561656835665665
OwnerName=Proxy
[/TASK]
Notice how we added ::DEFUNCT to the end of your database name?
[TASK]
for::UserProfiles::EXISTS
OwnerID=1465561656835665665
OwnerName=Proxy
[/TASK]
Awesome! Now you know the three different modes inside of Database Manipulation.