From f2375a152493ec47e43d22a22a26633155b897ab Mon Sep 17 00:00:00 2001 From: DevSpen <69215413+DevSpen@users.noreply.github.com> Date: Sat, 1 May 2021 13:53:50 -0400 Subject: [PATCH] Create author.md --- functions/author.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 functions/author.md diff --git a/functions/author.md b/functions/author.md new file mode 100644 index 0000000..6872169 --- /dev/null +++ b/functions/author.md @@ -0,0 +1,23 @@ +# $author +Sets the author text, icon, and/or URL. + +## Usage +`$author[text;image url;hover url]` + +[Info Msg] All fields in `$author[]` are optional. + +### Breakdown +`text` - Sets author text. + +`image url` - Sets author icon. + +`hover url` - Sets clickable URL. This only works if the text field is inputted. + +## Example +``` +bot.command({ + type: "command", + name: "author", + code: `$author[This is the author text.;https://cataas.com/cat;https://bit.ly/djs-bdscript]` +}) +```