๐ขCustom Command Variables
Use variables in your commands to make them more dynamic.
Last updated
Was this helpful?
Use variables in your commands to make them more dynamic.
Last updated
Was this helpful?
Was this helpful?
Variables relevant to the user who sent the command.
{{sender.username}}
- The username of the sender.
{{sender.followers}
- Follower count of the sender.
{{sender.followage}
- How long the sender has been following.
{{sender.url}}
- URL to the sender's Kick channel.
{{sender.bio}}
- The sender's Kick bio.
{{sender.instagram}}
- The sender's Instagram username, from their Kick profile.
{{sender.twitter}}
- The sender's Twitter username, from their Kick profile.
{{sender.youtube}}
- The sender's YouTube, from their Kick profile.
{{sender.discord}}
- The sender's Discord server, from their Kick profile.
{{sender.tiktok}}
- The sender's TikTok username, from their Kick profile.
{{sender.facebook}}
- The sender's Facebook username, from their Kick profile.
Variables relevant to the streamer.
{{streamer.username}}
- The username of the streamer.
{{streamer.followers}
- Follower count of the streamer.
{{streamer.url}}
- URL to the streamers's Kick channel.
{{streamer.bio}}
- The streamer's Kick bio.
{{streamer.instagram}}
- The streamer's Instagram username, from their Kick profile.
{{streamer.twitter}}
- The streamer's Twitter username, from their Kick profile.
{{streamer.youtube}}
- The streamer's YouTube, from their Kick profile.
{{streamer.discord}}
- The streamer's Discord server, from their Kick profile.
{{streamer.tiktok}}
- The streamer's TikTok username, from their Kick profile.
{{streamer.facebook}}
- The streamer's Facebook username, from their Kick profile.
Values based on the text or user tagged after a command. Ex: !so @henryk89
{{param}}
- The text following the command
{{taggedUser.username}}
- The username of the person tagged
{{taggedUser.followers}
- Follower count of the person tagged.
{{taggedUser.followage}
- How long the tagged user has been following.
{{taggedUser.url}}
- URL to the tagged user's Kick channel.
{{taggedUser.bio}}
- The tagged user's Kick bio.
{{taggedUser.instagram}}
- The tagged user's Instagram username, from their Kick profile.
{{taggedUser.twitter}}
- The tagged user's Twitter username, from their Kick profile.
{{taggedUser.youtube}}
- The tagged user's YouTube, from their Kick profile.
{{taggedUser.discord}}
- The tagged user's Discord server, from their Kick profile.
{{taggedUser.tiktok}}
- The tagged user's TikTok username, from their Kick profile.
{{taggedUser.facebook}}
- The tagged user's Facebook username, from their Kick profile.
Information relevant to the stream.
{{stream.title}}
- Title of the stream
{{stream.category}}
- Category of the stream
{{stream.viewers}}
- Viewer count of the stream
Random variables
{{randomRange(x,y)}}
- Random integer between x and y
{{randomItem(โoneโ,โtwoโ,โthreeโ)}}
- Random item from the list
{{randomItemPercentage(โoneโ:70, โtwoโ:5, โthreeโ:25)}}
- Random item from the list with a percentage chance
Make a GET request to an API
{{request(โhttps://api.chucknorris.io/jokes/randomโ).value}}
- Make a request and display the "value" parameter returned by the response.
!followers
{{streamer.username}} has {{streamer.followers}} followers
!viewers
{{streamer.username}} currently has {{stream.viewers}} viewers
!title
This stream is titled {{stream.title}}
!so @username
Go follow @{{taggedUser.username}} at {{taggedUser.url}}
!me
Follow me! {{sender.url}}
!dice
Your number is: {{randomRange(1,6)}}
!joke
Here is a Chuck Norris joke: {{request(โhttps://api.chucknorris.io/jokes/randomโ).value}}
This makes a request to api.chucknorris.io and displays the "value" parameter from the response. Only GET requests are supported and any authorization must be down through query parameters. Specify the data you want to display with JSON syntax after the url. For example: request("url").data[0].forecast.london