Custom Commands

Custom commands allow you to create your own commands. The Custom Command system in OWN3D Pro is somewhat complex and can be used for some advanced stuff.

Custom Commands

Create a OWN3D Pro Command

To create your first custom command, go to the OWN3D Pro Dashboard. There you click on Commands.

Advanced Custom Commands

TIP

Some basic coding knowledge with Twigopen in new window may be required to use some of these features.

Using templates in custom commands

If you wish to do anything more than a "Type in a command" -> "Make the bot say something." Such as getting information on the person calling the command, and many others things. It is recommended that you check out this page:

Synopsis

A template is a regular text file. It can generate any text-based irc messages.

A template contains variables or expressions, which get replaced with values when the template is evaluated, and tags, which control the template’s logic.

Below is a minimal template that illustrates a few basics. We will cover further details later on:

{% set number = random(1, 6) %}
{% if number == 6 %}
  You rolled your lucky 6 today!
{% else %}
  You rolled {{ number }}!
{% endif %}

There are two kinds of delimiters:

{% ... %} // this one is used to execute statements such as for-loops

and

{{ ... }} // this one is used to outputs the result of an expression

Variables

The chatbot passes variables to the templates for manipulation in the template. Variables may have attributes or elements you can access, too. The visual representation of a variable depends heavily on the chatbot providing it.

Use a dot (.) to access attributes of a variable.

{{ irc.channel }}

It’s important to know that the curly braces are not part of the variable but the print statement. When accessing variables inside tags, don’t put the braces around them.

If a variable or attribute does not exist, you will receive a null value when the strict_variables option is set to false; alternatively, if strict_variables is set, Twig will throw an error (see environment options).

If you want to access a dynamic attribute of a variable, use the attribute function instead.

The attribute function is also useful when the attribute contains special characters (like - that would be interpreted as the minus operator):

{# equivalent to the non-working irc.tags.room-id #}
{{ attribute(irc.tags, 'room-id') }}

Filters

Variables can be modified by filters. Filters are separated from the variable by a pipe symbol (|). Multiple filters can be chained. The output of one filter is applied to the next.

The following example title-cases the irc message:

{{ irc.message|title }}

Control Structure

A control structure refers to all those things that control the flow of a program - conditionals (i.e. if/elseif/else), for-loops, as well as things like blocks. Control structures appear inside {% ... %} blocks.

In this example, we roll a dice:

{% set number = random(1, 6) %}
{% if number == 6 %}
  You rolled your lucky 6 today!
{% else %}
  You rolled {{ number }}!
{% endif %}

The Message template

TIP

Checkout our Template Reference for all Command, IRC message templates and our Database, Cache, HTTP JSON Request and many other functions.

Command

FieldTypeDescription
command.commandstring
command.commandsarray
command.command_aliasesarray
command.responsemixed
command.command_regexstring
command.permissionsint
command.priceint
command.send_asstring
command.enable_whenstring
command.user_cooldownint
command.global_cooldownint
command.is_visiblebool

IRC

FieldTypeDescription
irc.tagsmixedTwitch IRC user state object
irc.channelstringRaw channel username
irc.messagestringRaw message

Examples of custom commands

Here we offer the few examples to show what our template system can do:

Fetch information from database

You currently have {{ db('membership').currency|default(0) }} Currency!
Your channel url is own3d.pro/{{ db('channel').slug }}

Working with the cache & update database information

In this example, we allow the user to generate currency every 5 minutes.

{% if cache('timely') == 1 %}
  You're still on your cooldown period.
{% else %}
  {{ cache('timely', 1, 300) }}
  {{ inc('membership', 'curreny', 1)}}
  You collected $1!
{% endif %}

Creating json requests

The json method allows you to fetch data from another services. To learn more about this function, checkout HTTP JSON Requests.

Random Quote: {{ json('GET', 'https://api.quotable.io/random').content }}

Magic 8-Ball

This will create a simple !8ball command.

{% set answers = [
    "As I see it, yes",
    "It is certain",
    "It is decidedly so",
    "Most likely",
    "Outlook good",
    "Signs point to yes",
    "Without a doubt",
    "Yes",
    "Yes - definitely",
    "You may rely on it",
    "Reply hazy, try again",
    "Ask again later",
    "Better not tell you now",
    "Cannot predict now",
    "Concentrate and ask again",
    "Don't count on it",
    "My reply is no",
    "My sources say no",
    "Outlook not so good",
    "Very doubtful"
] %}
{{ random(answers) }}

Lurk Messages

Twitch lurker is a term given to a passive viewer who is watching a stream but not contributing to the channel’s chat. People who are lurking in chat are often assumed to be bot traffic when in reality lurkers make up the vast majority of viewers on the platform.

Create a funny !lurk command:

{% set messages = [
    "is watching from the bushes.",
    "has spilled tea on their keyboard so they will not be chatting.",
    "is lurking in the shadows like a big spooky weirdo."
] %}
{{ attribute(irc.tags, 'display-name') }}
{{ random(messages) }}

Shoutout

Create a shoutout command !so <username>:

{% set channel = channel(user(args[1]).id) %}
{% if channel %}
    Check out {{ channel.name }} over at {{ channel.url }}, they are playing {{ channel.game }}!
{% else %}
    Please define a valid user with "!so <username>".
{% endif %}

Hug

Create a shoutout command !hug <username>:

{% set user = user(args[1]) %}
{% if user %}
    {{ attribute(irc.tags, 'display-name') }} hugs {{ user.name }} <3
{% else %}
    Use "!hug <username>".
{% endif %}