This repository has been archived by the owner on Jan 18, 2022. It is now read-only.
forked from DevSpen/d.js-BDScript-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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]` | ||
}) | ||
``` |