dnd
diff --git a/src/bdscript/guildExists.md b/src/bdscript/guildExists.md
index ade0727acb6..5a91677a4c1 100644
--- a/src/bdscript/guildExists.md
+++ b/src/bdscript/guildExists.md
@@ -1,7 +1,9 @@
# $guildExists
Checks if the provided guild/server exists.
-> Returns `true` if the server exists. Returns `false` if the server doesn't exist or the bot isn't present in the provided server.
+```admonish info
+Returns `true` if the server exists. Returns `false` if the server doesn't exist or the bot isn't present in the provided server.
+```
## Syntax
```
@@ -14,7 +16,7 @@ $guildExists[Guild ID]
## Example
```
$nomention
-$guildExists[$message[1]]
+$guildExists[$message]
```
``` discord yaml
@@ -30,3 +32,7 @@ $guildExists[$message[1]]
content: |
true
```
+
+```admonish question title="What is this?"
+How [`$message`](./message.md) works?
+```
diff --git a/src/bdscript/hasRole.md b/src/bdscript/hasRole.md
index 901d1fe5069..7bf0d41b29b 100644
--- a/src/bdscript/hasRole.md
+++ b/src/bdscript/hasRole.md
@@ -1,7 +1,9 @@
# $hasRole
Returns whether or not a user has the provided role.
-> "true" means the user has the role, "false" means they don't.
+```admonish info
+`true` means the user has the role, `false` means they don't.
+```
## Syntax
```
diff --git a/src/bdscript/hostingExpireTime.md b/src/bdscript/hostingExpireTime.md
index b8b1514439b..de02322428e 100644
--- a/src/bdscript/hostingExpireTime.md
+++ b/src/bdscript/hostingExpireTime.md
@@ -6,6 +6,10 @@ Returns your bot's hosting expiration date.
$hostingExpireTime
```
+```admonish tip title="Timestamp Converter"
+You can use our ["Timestamp Converter" tool](../tools/timestamp.md) to work with unixtime!
+```
+
## Example
```
$nomention
@@ -18,10 +22,12 @@ My hosting expiration date: $hostingExpireTime
color: "#E67E22"
content: |
!example
-- username: BDFD Support
- color: "#378afa"
- bot: true
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
verified: true
content: |
My hosting expiration date: San, 3 Sep 2029 23:59:00 UTC
```
+
diff --git a/src/bdscript/hostingExpireTimeComplex.md b/src/bdscript/hostingExpireTimeComplex.md
index 569c50c7314..5133527c7a6 100644
--- a/src/bdscript/hostingExpireTimeComplex.md
+++ b/src/bdscript/hostingExpireTimeComplex.md
@@ -6,6 +6,10 @@ Returns your bot's hosting expiration date. If "yes" is provided, the function r
$hostingExpireTime[Return unix timestamp?]
```
+```admonish tip title="Timestamp Converter"
+You can use our ["Timestamp Converter" tool](../tools/timestamp.md) to work with unixtime!
+```
+
### Parameters
- `Return unix timestamp?` `(Type: Bool || Flag: Required)`: Whether to return the expiration date in a UNIX timestamp or not.
@@ -21,10 +25,12 @@ I will be offline true
+ Are you an admin?: true
+- user_id: 863865579483037726
+ username: Kemi
+ color: "#000000"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Are you an admin?: false
+- user_id: 863865579483037726
+ username: Kemi
+ color: "#000000"
+ content: |
+ Sadly
```
+
+```admonish question title="What is this?"
+How [`$authorID`](./authorID.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/isBanned.md b/src/bdscript/isBanned.md
index 546b99132c7..3103167e2db 100644
--- a/src/bdscript/isBanned.md
+++ b/src/bdscript/isBanned.md
@@ -1,7 +1,9 @@
# $isBanned
Returns whether a user is banned from the current server or not. Requires the `BAN_MEMBERS` permission.
-> "true" means the user is banned, "false" means they aren't.
+```admonish info
+`true` means the user is banned, `false` means they aren't.
+```
## Syntax
```
@@ -14,6 +16,24 @@ $isBanned[User ID]
## Example
```
$nomention
-$isBanned[$message[1]]
+Banned?: $isBanned[$message]
```
-
+
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example 551786741296791562
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Banned?: true
+```
+
+```admonish question title="What is this?"
+How [`$message`](./message.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/isBoolean.md b/src/bdscript/isBoolean.md
index 8d8a75bf48b..89cc9b11211 100644
--- a/src/bdscript/isBoolean.md
+++ b/src/bdscript/isBoolean.md
@@ -1,7 +1,7 @@
# $isBoolean
Returns whether the provided text is a boolean or not.
-```admonish note
+```admonish info
`true` means the text is a boolean, `false` means it isn’t.
```
diff --git a/src/bdscript/isBooster.md b/src/bdscript/isBooster.md
index c3cf0108174..9fb39555789 100644
--- a/src/bdscript/isBooster.md
+++ b/src/bdscript/isBooster.md
@@ -1,7 +1,9 @@
# $isBooster
Returns if user is boosting guild with nitro.
-> "true" means the user is a booster, "false" means it isn't.
+```admonish info
+"true" means the user is a booster, "false" means it isn't.
+```
## Syntax
```
@@ -13,7 +15,7 @@ $isBooster[(User ID;Guild ID)]
## Example
```
$nomention
-Booster? $isBooster[$mentioned[1]]
+Booster?: $isBooster[$mentioned[1]]
```
``` discord yaml
@@ -28,8 +30,13 @@ Booster? $isBooster[$mentioned[1]]
bot: true
verified: true
content: |
- Booster? true
+ Booster?: true
+```
+
+```admonish tip
+You can use empty `$isBooster[]` to get the information about author.\
+```
+
+```admonish question title="What is this?"
+How [`$mentioned[]`](./mentioned.md) works?
```
-
-> You can use `$isBooster[]` to get the status of author.\
-> [How `$mentioned[]` works?](./mentioned.md)
diff --git a/src/bdscript/isBot.md b/src/bdscript/isBot.md
index a07f6e12d16..e1d4c75c179 100644
--- a/src/bdscript/isBot.md
+++ b/src/bdscript/isBot.md
@@ -1,7 +1,9 @@
# $isBot
Returns whether the provided user is a bot or not.
-> "true" means the user is a bot, "false" means they aren't.
+```admonish info
+"true" means the user is a bot, "false" means they aren't.
+```
## Syntax
```
@@ -43,3 +45,7 @@ Bot?: $isBot[$mentioned[1]]
content: |
Bot?: true
```
+
+```admonish question title="What is this?"
+How [`$mentioned[]`](./mentioned.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/isHoisted.md b/src/bdscript/isHoisted.md
index dc0138a7f05..c4a5fd92d94 100644
--- a/src/bdscript/isHoisted.md
+++ b/src/bdscript/isHoisted.md
@@ -1,7 +1,9 @@
# $isHoisted
Returns whether a role is displayed separately or not.
-> "true" means the role is hoisted, "false" means it isn't.
+```admonish info
+"true" means the role is hoisted, "false" means it isn't.
+```
## Syntax
```
@@ -14,7 +16,11 @@ $isHoisted[Role ID]
## Example
```
$nomention
-$isHoisted[$findRole[$message]]
+$isHoisted[$message]
```

+
+```admonish question title="What is this?"
+How [`$message`](./message.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/isInteger.md b/src/bdscript/isInteger.md
index b07cd09262f..6fe3a76091e 100644
--- a/src/bdscript/isInteger.md
+++ b/src/bdscript/isInteger.md
@@ -1,7 +1,7 @@
# $isInteger
Checks if the specified value is an integer or not.
-```admonish note
+```admonish info
`true` means the value is an integer, `false` means it isn’t.
```
diff --git a/src/bdscript/isMentionable.md b/src/bdscript/isMentionable.md
index 200bcd8af14..bc7dcb02d4b 100644
--- a/src/bdscript/isMentionable.md
+++ b/src/bdscript/isMentionable.md
@@ -1,7 +1,9 @@
# $isMentionable
Returns whether a role is mentionable by everyone or not.
-> "true" means the role is mentionable, "false" means it isn't.
+```admonish info
+"true" means the role is mentionable, "false" means it isn't.
+```

@@ -16,7 +18,11 @@ $isMentionable[Role ID]
## Example
```
$nomention
-$isMentionable[$findRole[$message]]
+$isMentionable[$message]
```
-
+
+
+```admonish question title="What is this?"
+How [`$message`](./message.md) works?
+```
diff --git a/src/bdscript/isMentioned.md b/src/bdscript/isMentioned.md
index 7bbe50be7cf..3d44146f5ab 100644
--- a/src/bdscript/isMentioned.md
+++ b/src/bdscript/isMentioned.md
@@ -34,3 +34,7 @@ $isMentioned[$mentioned[1]]
content: |
true
```
+
+```admonish question title="What is this?"
+How [`$mentioned[]`](./mentioned.md) works?
+```
diff --git a/src/bdscript/isMessageEdited.md b/src/bdscript/isMessageEdited.md
index f2b4ac356d9..9d6ed9d6ef1 100644
--- a/src/bdscript/isMessageEdited.md
+++ b/src/bdscript/isMessageEdited.md
@@ -39,5 +39,5 @@ $isMessageEdited[$channelID;$lastMessageID]
> [How to get the Message/Channel ID guide.](https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID-)
```admonish question title="What is this?"
-How [`$lastMessageID`](./lastMessageID.md) works?
+How [`$channelID`](./channelID.md) and [`$lastMessageID`](./lastMessageID.md) works?
```
diff --git a/src/bdscript/isNSFW.md b/src/bdscript/isNSFW.md
index 3e127d1c52b..c5a99abcf79 100644
--- a/src/bdscript/isNSFW.md
+++ b/src/bdscript/isNSFW.md
@@ -1,7 +1,43 @@
# $isNSFW
Returns whether the provided channel is NSFW (Not Safe For Work) or not.
-
-> "true" means the channel is NSFW, "false" means it isn't.
+
+
+
+```admonish info
+"true" means the channel is NSFW, "false" means it isn't.
+```
## Syntax
```
@@ -18,11 +54,6 @@ Is this channel NSFW?: `$isNSFW[$channelID]`
```
```discord yaml
-- user_id: 803569638084313098
- username: RainbowKey
- color: "#E67E22"
- content: |
- NSFW Channel 🤫
- user_id: 803569638084313098
username: RainbowKey
color: "#E67E22"
@@ -38,11 +69,6 @@ Is this channel NSFW?: `$isNSFW[$channelID]`
```
```discord yaml
-- user_id: 803569638084313098
- username: RainbowKey
- color: "#E67E22"
- content: |
- It's a main chat here!
- user_id: 803569638084313098
username: RainbowKey
color: "#E67E22"
diff --git a/src/bdscript/isNumber.md b/src/bdscript/isNumber.md
index 43fea0c94f6..aead1765c3d 100644
--- a/src/bdscript/isNumber.md
+++ b/src/bdscript/isNumber.md
@@ -1,7 +1,7 @@
# $isNumber
Returns whether the provided value is a number or not.
-```admonish tip
+```admonish info
`true` means the value is a number, `false` means it isn’t.
```
diff --git a/src/bdscript/isSlash.md b/src/bdscript/isSlash.md
index 3f7ae948ca8..2572c21c29e 100644
--- a/src/bdscript/isSlash.md
+++ b/src/bdscript/isSlash.md
@@ -1,7 +1,9 @@
# $isSlash
Returns whether the command was ran as a slash command or not.
-> "true" means the command was ran as a slash command, "false" means it wasn't.
+```admonish info
+"true" means the command was ran as a slash command, "false" means it wasn't.
+```
## Syntax
```
diff --git a/src/bdscript/isTicket.md b/src/bdscript/isTicket.md
index 6e093655813..be8bdbf10af 100644
--- a/src/bdscript/isTicket.md
+++ b/src/bdscript/isTicket.md
@@ -1,12 +1,52 @@
# $isTicket
Checks whether the current or specified channel is a ticket or not.
+
+
-> "true" means the channel is a ticket, "false" means it isn't.
+```admonish info
+"true" means the channel is a ticket, "false" means it isn't.
+```
## Syntax
```
$isTicket[(Channel ID)]
```
+
+```admonish info
+This function uses the channel name to determine whether it is a ticket or not. If the channel name contains `ticket` word, the function will return `true`.
+```
### Parameters
- `Channel ID` `(Type: Snowflake || Flag: Optional)`: The channel to check. _(Defaults to the current channel)_
@@ -14,11 +54,40 @@ $isTicket[(Channel ID)]
## Example
```
$nomention
-$onlyIf[$isTicket[]==true;This command can only be used in a ticket!]
+$onlyIf[$isTicket[]==true;❌ This command can only be used in a ticket!]
This is a ticket!
```
-\
-
-
-> To create a ticket, use the [`$newTicket[]`](./newTicket.md) function.
-
+
+```discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ ❌ This command can only be used in a ticket!
+```
+
+```discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ This is a ticket!
+```
+
+```admonish tip
+To create a ticket, use the [`$newTicket[]`](./newTicket.md) function.
+```
diff --git a/src/bdscript/isTimedOut.md b/src/bdscript/isTimedOut.md
index 2a644e1f1f9..8befd31209f 100644
--- a/src/bdscript/isTimedOut.md
+++ b/src/bdscript/isTimedOut.md
@@ -1,7 +1,9 @@
# $isTimedOut
Checks whether the specified user is timed out or not.
-> "true" means the user is timed out, "false" means they aren't.
+```admonish info
+"true" means the user is timed out, "false" means they aren't.
+```
## Syntax
```
@@ -17,3 +19,7 @@ $nomention
User is timed out: $isTimedOut[$mentioned[1]]
```

+
+```admonish question title="What is this?"
+How [`$mentioned[]`](./mentioned.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/isUserDMEnabled.md b/src/bdscript/isUserDMEnabled.md
index c962badc400..e94f8be1b7c 100644
--- a/src/bdscript/isUserDMEnabled.md
+++ b/src/bdscript/isUserDMEnabled.md
@@ -1,7 +1,9 @@
# $isUserDMEnabled
Checks whether the bot can DM the user or not.
-
-> "true" means the bot can DM the user, "false" means it can't.
+
+```admonish info
+"true" means the bot can DM the user, "false" means it can't.
+```
## Syntax
```
diff --git a/src/bdscript/isValidHex.md b/src/bdscript/isValidHex.md
index ae22a146774..cdf3c1ff359 100644
--- a/src/bdscript/isValidHex.md
+++ b/src/bdscript/isValidHex.md
@@ -62,6 +62,10 @@ Is valid HEX? $isValidHex[$message]
How [`$message`](./message.md) works?
```
+```admonish tip title="Color Picker"
+You can use our ["Color" tool](../tools/color.md) to choose colors!
+```
+
Here you can understand how this function works.
@@ -74,3 +78,4 @@ How [`$message`](./message.md) works? Is valid HEX? true1446827813184208896
+```
\ No newline at end of file
diff --git a/src/bdscript/modifyChannel.md b/src/bdscript/modifyChannel.md
index ce648cb05b8..8b18d78b381 100644
--- a/src/bdscript/modifyChannel.md
+++ b/src/bdscript/modifyChannel.md
@@ -13,10 +13,14 @@ $modifyChannel[Channel ID;(Channel Name;Topic;Make NSFW?;Position;Category ID)]
- `Make NSFW?` `(Type: Bool || Flag: Vacantable)`: Whether the channel will be marked as NSFW or not.
- `Position` `(Type: Integer || Flag: Vacantable)`: The new channel position *(1 = top)*.
- `Category ID` `(Type: Snowflake || Flag: Vacantable)`: The category to which the channel should belong to.
-
-> You can use `!unchanged` as an parameter for the option to remain in its current state.
-
-> You can use `$channelID[Category/Channel Name]` to get the ID of a category or channel.
+
+```admonish tip
+You can use `!unchanged` as an parameter for the option to remain in its current state.
+```
+
+```admonish tip
+You can use [`$channelID[Category/Channel Name]`](./channelIDComplex.md) to get the ID of a category or channel.
+```
### Permissions
Required permissions that the bot must have for this function to work properly :
diff --git a/src/bdscript/modifyChannelPerms.md b/src/bdscript/modifyChannelPerms.md
index 1fbd841ae26..6330fbeae43 100644
--- a/src/bdscript/modifyChannelPerms.md
+++ b/src/bdscript/modifyChannelPerms.md
@@ -3,8 +3,9 @@
Deprecated
-> This function is deprecated, instead better use [`$editChannelPerms[]`](./editChannelPerms.md).
-
+```admonish warning
+This function has been deprecated in favor of [`$editChannelPerms[]`](./editChannelPerms.md).
+```
Modifies a channel's permissions.
## Syntax
diff --git a/src/bdscript/modifyRole.md b/src/bdscript/modifyRole.md
index b7e2a4709f1..3cf85f176ca 100644
--- a/src/bdscript/modifyRole.md
+++ b/src/bdscript/modifyRole.md
@@ -6,12 +6,18 @@ Modifies an existing role.
$modifyRole[Role ID;(Role name;Color hex;Hoisted?;Mentionable?)]
```
-> You can use `!unchanged` as an argument to leave the setting as-is.
+```admonish tip
+You can use `!unchanged` as an argument to leave the setting as-is.
+```
### Parameters
- `Role ID` `(Type: Snowflake || Flag: Required)`: The ID of the role to modify.
- `Role name` `(Type: String || Flag: Optional)`: The new role name.
-- `Color hex` `(Type: Color || Flag: Optional)`: The new role color.
+- `Color hex` `(Type: Color || Flag: Optional)`: The new role [color hex](../tools/color.md). You can also use color integer number.
+```admonish tip title="Color Picker"
+You can use our ["Color" tool](../tools/color.md) to select the best color!
+```
+
- `Hoisted?` `(Type: Bool || Flag: Optional)`: Whether the role should be displayed separately or not.
- `Mentionable?` `(Type: Bool || Flag: Optional)`: Whether the role should be mentionable by everyone or not.
@@ -27,3 +33,4 @@ $description[✅ Changed role name of <@&$findRole[$message[1]]>]
```

+
diff --git a/src/bdscript/multi.md b/src/bdscript/multi.md
index de64885efee..59bb5a8ef0a 100644
--- a/src/bdscript/multi.md
+++ b/src/bdscript/multi.md
@@ -3,11 +3,11 @@ Muliplies the provided numbers.
## Syntax
```
-$multi[Number;..]
+$multi[Numbers;..]
```
### Parameters
-- `Number` `(Type: Float, Integer || Flag: Required)`: The numbers to multiply. Use semicolons `;` as a separator to separate multiple numbers.
+- `Numbers` `(Type: Float, Integer || Flag: Required)`: The numbers to multiply. Use semicolons `;` as a separator to separate multiple numbers.
## Example
```
diff --git a/src/bdscript/mute.md b/src/bdscript/mute.md
index ea7c65872b7..5578fa2f580 100644
--- a/src/bdscript/mute.md
+++ b/src/bdscript/mute.md
@@ -3,7 +3,9 @@
Deprecated
-> This function is deprecated, instead better use [`$timeout[]`](https://nilpointer-software.github.io/bdfd-wiki/bdscript/timeout.html).
+```admonish warning
+As of December 2021, this function has been deprecated in favor of [`$timeout[]`](./timeout.md).
+```
Mutes the mentioned user.
diff --git a/src/bdscript/nickname.md b/src/bdscript/nickname.md
index 752c1d4bacb..f6f47204df0 100644
--- a/src/bdscript/nickname.md
+++ b/src/bdscript/nickname.md
@@ -1,7 +1,9 @@
# $nickname
Returns the nickname of the author of the message.
-
-> Nickname means the user's server nickname. If the user doesn't have a nickname then their display name is returned instead.
+
+```admonish info
+Nickname means the user's server nickname. If the user doesn't have a nickname then their display name is returned instead.
+```
## Syntax
```
diff --git a/src/bdscript/nicknameComplex.md b/src/bdscript/nicknameComplex.md
index e0fc0e26b54..74f995d9bf2 100644
--- a/src/bdscript/nicknameComplex.md
+++ b/src/bdscript/nicknameComplex.md
@@ -1,7 +1,9 @@
# $nickname[]
Returns the nickname of the given user.
-
-> Nickname means the user's server nickname. If the user doesn't have a nickname then their display name is returned instead.
+
+```admonish info
+Nickname means the user's server nickname. If the user doesn't have a nickname then their display name is returned instead.
+```
## Syntax
```
diff --git a/src/bdscript/noMentionMessage.md b/src/bdscript/noMentionMessage.md
index 8019b3c1f6e..89305e2787e 100644
--- a/src/bdscript/noMentionMessage.md
+++ b/src/bdscript/noMentionMessage.md
@@ -26,20 +26,32 @@ Message: $noMentionMessage
content: |
Hello !
```
+
+
+~~~admonish example
- Lets use [`$message`](./message.md) instead of `$noMentionMessage`:
+
+```
+$nomention
+Message: $message
+```
``` discord yaml
- user_id: 803569638084313098
username: RainbowKey
color: "#E67E22"
content: |
- !example Hello <@MineBartekSA>!
+ !example Hello <@Kuba>!
- username: BDFD Support
user_id: 1009018156494368798
color: "#378afa"
bot: true
verified: true
content: |
- Hello @MineBartekSA!
-```
+ Hello @Kuba!
+```
+
+> How [`$message`](./message.md) works?
+
+~~~
diff --git a/src/bdscript/noMentionMessageComplex.md b/src/bdscript/noMentionMessageComplex.md
index 2bf3593dbe4..29ddb4e8d2f 100644
--- a/src/bdscript/noMentionMessageComplex.md
+++ b/src/bdscript/noMentionMessageComplex.md
@@ -8,8 +8,10 @@ $noMentionMessage[Argument number]
### Parameters
- `Argument number` `(Type: HowMany || Flag: Required)`: Returns the argument matching the provided number *(excluding mentions)*.
-
-> For example, `$noMentionMessage[1]` would just return the first word of the message, ignoring any possible mentions before. You can also use `$noMentionMessage[>]` to get the last argument/word of the user's message.
+
+```admonish example
+For example, `$noMentionMessage[1]` would just return the first word of the message, ignoring any possible mentions before. You can also use `$noMentionMessage[>]` to get the last argument/word of the user's message.
+```
## Example
```
diff --git a/src/bdscript/nodeVersion.md b/src/bdscript/nodeVersion.md
index af220a8a1ec..4f2d12163dc 100644
--- a/src/bdscript/nodeVersion.md
+++ b/src/bdscript/nodeVersion.md
@@ -27,4 +27,6 @@ Node version: $nodeVersion
Node version: 06-09-2024-6c7eada
```
-> You can use [`$botNode`](./botNode.md) to find out which node your bot is on.
+```admonish tip
+You can use [`$botNode`](./botNode.md) to find out which node your bot is on.
+```
\ No newline at end of file
diff --git a/src/bdscript/nodeVersionComplex.md b/src/bdscript/nodeVersionComplex.md
index 702aea42fec..fc00415024e 100644
--- a/src/bdscript/nodeVersionComplex.md
+++ b/src/bdscript/nodeVersionComplex.md
@@ -8,8 +8,10 @@ $nodeVersion[Node Number]
### Parameters
- `Node Number` `(Type: Integer || Flag: Required)`: The number of the node for which to return its version.
-
-> You can use [`$botNode`](./botNode.md) to find out which node your bot is on.
+
+```admonish tip
+You can use [`$botNode`](./botNode.md) to find out which node your bot is on.
+```
## Example
```
diff --git a/src/bdscript/nomention.md b/src/bdscript/nomention.md
index a707ad38b4f..b5b750f5f26 100644
--- a/src/bdscript/nomention.md
+++ b/src/bdscript/nomention.md
@@ -26,6 +26,8 @@ Hello World!
content: |
Hello world!
```
+
+~~~admonish example
- Without `$nomention`:
@@ -44,3 +46,5 @@ Hello World!
content: |
<@RainbowKey> Hello world!
```
+
+~~~
\ No newline at end of file
diff --git a/src/bdscript/onlyIf.md b/src/bdscript/onlyIf.md
index 7afa1626be7..4307dfab9d0 100644
--- a/src/bdscript/onlyIf.md
+++ b/src/bdscript/onlyIf.md
@@ -18,8 +18,6 @@ $onlyIf[Condition;Error message]
- `<=` - Less Than Or Equal To
- `>=` - Greater Than Or Equal To
-> ⚠️ The signs `<`, `>`, `<=` and `>=` only work with numbers.
-
## Examples
#### Equal (`==`)
```
diff --git a/src/bdscript/onlyIfMessageContains.md b/src/bdscript/onlyIfMessageContains.md
index 279f570c5f2..7505ee707cc 100644
--- a/src/bdscript/onlyIfMessageContains.md
+++ b/src/bdscript/onlyIfMessageContains.md
@@ -70,5 +70,5 @@ Hello world!
```
```admonish question title="What is this?"
-How [`$username`](./username.md) works?
+How [`$message`](./message.md) works?
```
diff --git a/src/bdscript/parentID.md b/src/bdscript/parentID.md
index 017ca9b8834..2c31d28170f 100644
--- a/src/bdscript/parentID.md
+++ b/src/bdscript/parentID.md
@@ -11,4 +11,38 @@ $parentID
$nomention
Current category: $parentID
```
-
+
+```discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Current category: 567445224989786132
+```
+
+~~~admonish example
+Returns empty if no parent (category) was found:
+
+```discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Current category:
+```
+
+~~~
\ No newline at end of file
diff --git a/src/bdscript/parentIDComplex.md b/src/bdscript/parentIDComplex.md
index 4417434351c..29d9a03a4f1 100644
--- a/src/bdscript/parentIDComplex.md
+++ b/src/bdscript/parentIDComplex.md
@@ -12,6 +12,44 @@ $parentID[Channel ID]
## Example
```
$nomention
-Category ID: $parentID[$mentionedChannels[1]]
+Category: $parentID[$mentionedChannels[1]]
```
-
+
+```discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example <#bot-commands-1>
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Category: 612065938715574273
+```
+
+~~~admonish example
+Returns empty if no parent (category) was found:
+
+```discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example <#developers>
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Category:
+```
+
+~~~
+
+```admonish question title="What is this?"
+How [`$mentionedChannels[]`](./mentionedChannels.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/pinMessage.md b/src/bdscript/pinMessage.md
index 433d64e46e0..ad7ecaf2571 100644
--- a/src/bdscript/pinMessage.md
+++ b/src/bdscript/pinMessage.md
@@ -1,7 +1,9 @@
# $pinMessage
Pins the bot's response message in the current channel.
-
-> ⚠️ A channel can have a maximum of 50 pinned messages.
+
+```admonish warning title="Limit"
+A channel can have a maximum of 250 pinned messages.
+```
## Syntax
```
diff --git a/src/bdscript/pinMessageComplex.md b/src/bdscript/pinMessageComplex.md
index 35bdc079746..0b6208fc558 100644
--- a/src/bdscript/pinMessageComplex.md
+++ b/src/bdscript/pinMessageComplex.md
@@ -1,7 +1,9 @@
# $pinMessage[]
Pins a specific message using its channel and message ID.
-
-> ⚠️ A channel can have a maximum of 50 pinned messages.
+
+```admonish warning title="Limit"
+A channel can have a maximum of 250 pinned messages.
+```
## Syntax
```
diff --git a/src/bdscript/ping.md b/src/bdscript/ping.md
index ab36fe9effe..075e2df0f4e 100644
--- a/src/bdscript/ping.md
+++ b/src/bdscript/ping.md
@@ -1,5 +1,5 @@
# $ping
-Returns the ping of the bot's node, in milliseconds.
+Returns the ping of **the bot's node**, in milliseconds.
## Syntax
```
diff --git a/src/bdscript/premiumExpireTime.md b/src/bdscript/premiumExpireTime.md
index 66fb8f51d6b..9bb1286a548 100644
--- a/src/bdscript/premiumExpireTime.md
+++ b/src/bdscript/premiumExpireTime.md
@@ -1,13 +1,19 @@
# $premiumExpireTime
Returns how long until premium expires.
-> Returns "expired" if the bot is not premium.
+```admonish info
+Returns `expired` if the bot is not premium.
+```
## Syntax
```
$premiumExpireTime[(Return unix timestamp?)]
```
+```admonish tip title="Timestamp Converter"
+You can use our ["Timestamp Converter" tool](../tools/timestamp.md) to work with unixtime!
+```
+
### Parameters
- `Return unix timestamp?` `(Type: Bool || Flag: Optional)`: If "yes" is written, it will return the premium expiration value in UNIX timestamp and if "no", it will output as normal time format. Defaults to "no".
@@ -43,3 +49,4 @@ My premium expires in: $premiumExpireTime (Unix Timestamp: $premiumExpireTime[ye
content: |
My premium expires in: expired (Unix Timestamp: expired)
```
+
diff --git a/src/bdscript/random.md b/src/bdscript/random.md
index f3d4552aff8..cc88f14930e 100644
--- a/src/bdscript/random.md
+++ b/src/bdscript/random.md
@@ -18,9 +18,10 @@ The random number is **$random**
color: "#E67E22"
content: |
!example
-- username: BDFD Support
- color: "#378afa"
- bot: true
+- username: BDFD Support
+ user_id: 1009018156494368798
+ color: "#378afa"
+ bot: true
verified: true
content: |
The random number is 4
diff --git a/src/bdscript/randomCategoryID.md b/src/bdscript/randomCategoryID.md
index a94b0fe652d..243ac9d972b 100644
--- a/src/bdscript/randomCategoryID.md
+++ b/src/bdscript/randomCategoryID.md
@@ -31,5 +31,5 @@ Random Category: $channelName[$randomCategoryID[]]
```
```admonish question title="What is this?"
-How [`$channelName`](./channelName.md) works?
+How [`$channelName[]`](./channelName.md) works?
```
diff --git a/src/bdscript/randomChannelID.md b/src/bdscript/randomChannelID.md
index 234973b735e..856064bd6fd 100644
--- a/src/bdscript/randomChannelID.md
+++ b/src/bdscript/randomChannelID.md
@@ -7,9 +7,26 @@ $randomChannelID
```
## Example
-```
-$nomention
-Here's A Random Channel: <#$randomChannelID>
-```
-
-
+```
+$nomention
+Random Channel: $channelName[$randomChannelID]
+```
+
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- username: BDFD Support
+ user_id: 1009018156494368798
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Random Channel: 😎main-chat
+```
+
+```admonish question title="What is this?"
+How [`$channelName[]`](./channelName.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/randomGuildID.md b/src/bdscript/randomGuildID.md
index bd2333f4d07..d6f7eb2f2b8 100644
--- a/src/bdscript/randomGuildID.md
+++ b/src/bdscript/randomGuildID.md
@@ -24,5 +24,9 @@ Random Guild: $serverName[$randomGuildID]
verified: true
content: |
Random Guild: Bot Designer for Discord Official Server
+```
+
+```admonish question title="What is this?"
+How [`$serverName[]`](./serverName.md) works?
```
diff --git a/src/bdscript/randomMention.md b/src/bdscript/randomMention.md
index 4ac8362427d..f3d6a7e6a00 100644
--- a/src/bdscript/randomMention.md
+++ b/src/bdscript/randomMention.md
@@ -11,4 +11,18 @@ $randomMention
$nomention
Random User: $randomMention
```
-
+
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- username: BDFD Support
+ user_id: 1009018156494368798
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Random User: <@Kuba>
+```
\ No newline at end of file
diff --git a/src/bdscript/randomRoleID.md b/src/bdscript/randomRoleID.md
index c9870dea678..41145c86d79 100644
--- a/src/bdscript/randomRoleID.md
+++ b/src/bdscript/randomRoleID.md
@@ -29,8 +29,10 @@ Random Role: $roleName[$randomRoleID[]]
content: |
Random Role: Owner
```
+
+~~~admonish warning
-> It can return the `@everyone` role ID!
+It can return the `@everyone` role ID!
``` discord yaml
- user_id: 803569638084313098
@@ -47,7 +49,9 @@ Random Role: $roleName[$randomRoleID[]]
Random Role: <@everyone>
highlight: true
```
+
+~~~
```admonish question title="What is this?"
-How [`$roleName`](./roleName.md) works?
+How [`$roleName[]`](./roleName.md) works?
```
diff --git a/src/bdscript/randomText.md b/src/bdscript/randomText.md
index 08abc4eed85..4696d60880c 100644
--- a/src/bdscript/randomText.md
+++ b/src/bdscript/randomText.md
@@ -27,7 +27,7 @@ $randomText[Hello;Hi;Hey]!
bot: true
verified: true
content: |
- Random Text: Hello!
+ Hello!
- user_id: 803569638084313098
username: RainbowKey
color: "#E67E22"
@@ -39,7 +39,7 @@ $randomText[Hello;Hi;Hey]!
bot: true
verified: true
content: |
- Random Text: Hey!
+ Hey!
- user_id: 803569638084313098
username: RainbowKey
color: "#E67E22"
@@ -51,7 +51,7 @@ $randomText[Hello;Hi;Hey]!
bot: true
verified: true
content: |
- Random Text: Hello!
+ Hello!
- user_id: 803569638084313098
username: RainbowKey
color: "#E67E22"
@@ -63,5 +63,5 @@ $randomText[Hello;Hi;Hey]!
bot: true
verified: true
content: |
- Random Text: Hi!
+ Hi!
```
diff --git a/src/bdscript/registerGuildCommandsComplex.md b/src/bdscript/registerGuildCommandsComplex.md
index c09396d0598..b36ac32c53c 100644
--- a/src/bdscript/registerGuildCommandsComplex.md
+++ b/src/bdscript/registerGuildCommandsComplex.md
@@ -25,7 +25,8 @@ Successfully registered the guild slash command `/help`!
$nomention
$argsCheck[>1;Provide guild slash command names!]
-$unregisterGuildCommands[$unescape[$toLowercase[$replaceText[$trimSpace[$message]; ;]]]]
+$registerGuildCommands[$unescape[$toLowercase[$replaceText[$trimSpace[$message]; ;]]]]
Successfully registered the provided guild slash commands!
```

+
diff --git a/src/bdscript/roleInfo.md b/src/bdscript/roleInfo.md
index e15220fa391..2034d60668f 100644
--- a/src/bdscript/roleInfo.md
+++ b/src/bdscript/roleInfo.md
@@ -17,6 +17,10 @@ You can use the following "commands" within `$roleInfo[]`:
- `{mentionable}` - Returns if the role is mentionable by everyone.
- `{hoist}` - Returns if the role is hoisted (displayed separately).
- `{color}` - Returns the role's color.
+```admonish tip title="Color Picker"
+You can use our ["Color" tool](../tools/color.md) to test colors!
+```
+
- `{position}` - Returns the role's position on the "roles list".
> `$roleInfo[]` automatically generates a description. So, `$description[]` should not be used in the code.
@@ -34,3 +38,4 @@ $title[Role Info]
```

+
diff --git a/src/bdscript/rolePosition.md b/src/bdscript/rolePosition.md
index 873e489e32b..9c5fc2f7256 100644
--- a/src/bdscript/rolePosition.md
+++ b/src/bdscript/rolePosition.md
@@ -7,12 +7,29 @@ $rolePosition[Role ID]
```
### Parameters
-- `Role ID` `(Type: Snowflake || Flag: Required)`: The role for which to get its position.
+- `Role ID` `(Type: Snowflake || Flag: Required)`: The role for which to get it's position.
## Example
```
$nomention
-$description[<@&$findRole[$message]>'s Position: $rolePosition[$findRole[$message]]]
+Role Position: $rolePosition[$message]
```
-
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example 568155071997542410
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Role Position: 6
+```
+
+```admonish question title="What is this?"
+How [`$message`](./message.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/rulesChannelID.md b/src/bdscript/rulesChannelID.md
index 8b724d5d2d0..cef9f590cf5 100644
--- a/src/bdscript/rulesChannelID.md
+++ b/src/bdscript/rulesChannelID.md
@@ -29,6 +29,10 @@ Rule channel's ID: $rulesChannelID[$guildID]
content: |
Rule channel's ID: 594598851155984426
```
+
+```admonish question title="What is this?"
+How [`$guildID`](./guildID.md) works?
+```
~~~admonish tip title="How to stop the error message?"
The `$rulesChannelID[]` function as said in above returns an error if there isn't any rule channel set on the server and there is a way to stop that.
diff --git a/src/bdscript/scriptLanguage.md b/src/bdscript/scriptLanguage.md
index c1d5e4e7aaa..15b33a597fa 100644
--- a/src/bdscript/scriptLanguage.md
+++ b/src/bdscript/scriptLanguage.md
@@ -5,17 +5,30 @@ Returns the name of scripting language used by the command.
```
$scriptLanguage
```
+
+```admonish note title="Possible Outputs"
+- BDScript
+- BDScript 2
+- BDScript Unstable
+```
## Example
```
$nomention
-This command uses `$scriptLanguage`.
+This command uses $scriptLanguage.
```
-
-
-> **Note:** After each execution of the command, we changed the script to another one.
-
-### Output value
-- BDScript
-- BDScript 2
-- BDScript Unstable
\ No newline at end of file
+
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ This command uses BDScript 2.
+```
\ No newline at end of file
diff --git a/src/bdscript/sendEmbedMessage.md b/src/bdscript/sendEmbedMessage.md
index 932e74b1cfe..7b46c03c631 100644
--- a/src/bdscript/sendEmbedMessage.md
+++ b/src/bdscript/sendEmbedMessage.md
@@ -3,7 +3,7 @@ Sends an embed message to the provided channel. Not needed fields can be left em
## Syntax
```
-$sendEmbedMessage[Channel ID;Content;(Title;Title URL;Description;Color;Author;Author icon;Footer;Footer icon;Thumbnail;Image;Add timestamp?;Return ID?)]
+$sendEmbedMessage[Channel ID;Content;(Title;Title URL;Description;Color hex;Author;Author icon;Footer;Footer icon;Thumbnail;Image;Add timestamp?;Return ID?)]
```
### Parameters
@@ -12,7 +12,11 @@ $sendEmbedMessage[Channel ID;Content;(Title;Title URL;Description;Color;Author;A
- `Title` `(Type: String || Flag: Vacantable)`: The text that will be used as the title.
- `Title URL` `(Type: URL || Flag: Vacantable)`: The URL that will be applied to the title.
- `Description` `(Type: String || Flag: Vacantable)`: The description that will be applied to the embed.
-- `Color` `(Type: Color || Flag: Vacantable)`: The [color hex](https://htmlcolorcodes.com/color-picker/) or integer to set the embed border color as.
+- `Color hex` `(Type: Color || Flag: Vacantable)`: The [color hex](../tools/color.md) to set the embed border color as. You can also use color integer number.
+```admonish tip title="Color Picker"
+You can use our ["Color" tool](../tools/color.md) to select the best color!
+```
+
- `Author` `(Type: String || Flag: Vacantable )`: The text that appears at the author.
- `Author icon` `(Type: URL || Flag: Vacantable)`: The image that appears next to the author. Must be a valid image URL.
- `Footer` `(Type: String || Flag: Vacantable)`: The text to set the footer as.
@@ -28,3 +32,4 @@ $nomention
$sendEmbedMessage[$channelID;;Title;https://discord.com/;description;000000;author;$authorAvatar;footer;$authorAvatar;$authorAvatar;$authorAvatar;no;no]
```

+
diff --git a/src/bdscript/sendMessage.md b/src/bdscript/sendMessage.md
index 420539e867e..90cce85f75a 100644
--- a/src/bdscript/sendMessage.md
+++ b/src/bdscript/sendMessage.md
@@ -10,21 +10,23 @@ $sendMessage[Text;(Return message ID?)]
- `Text` `(Type: String || Flag: Required)`: The text to send in the new message.
- `Return message ID?` `(Type: Bool || Flag: Optional)`: Whether to return the ID of the newly sent message, in another message. Defaults to `no`.
-## Examples
-### Example #1
-```
-$nomention
-$sendMessage[This is message #1!]
-$sendMessage[This is message #2!]
-$sendMessage[This is message #3!]
-```
-
-
-
-### Example #2
-```
-$nomention
-$sendMessage[This is message #1!;yes]
-$sendMessage[This is message #2!;yes]
-```
-
+## Example
+```
+$nomention
+$sendMessage[Hello world!]
+```
+
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Hello world!
+```
\ No newline at end of file
diff --git a/src/bdscript/serverChannelExists.md b/src/bdscript/serverChannelExists.md
index 86475c971b3..d53a9bd9904 100644
--- a/src/bdscript/serverChannelExists.md
+++ b/src/bdscript/serverChannelExists.md
@@ -3,15 +3,45 @@ Checks if the channel exists in the current server.
## Syntax
```
-$serverChannelExists[Channel ID]
+$serverChannelExists[Channel]
```
### Parameters
-- `Channel ID` `(Type: Snowflake, String || Flag: Emptiable)`: Returns "true" if the channel exists, otherwise "false" is returned.
+- `Channel` `(Type: Snowflake, String || Flag: Emptiable)`: Returns "true" if the channel exists, otherwise "false" is returned.
## Example
```
$nomention
-$serverChannelExists[$message[1]]
+Exists?: $serverChannelExists[$message]
```
-
+
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example 566370477967147018
+- username: BDFD Support
+ user_id: 1009018156494368798
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Exists?: true
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example dhjejemxndj
+- username: BDFD Support
+ user_id: 1009018156494368798
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Exists?: false
+```
+
+```admonish question title="What is this?"
+How [`$message`](./message.md) works?
+```
\ No newline at end of file
diff --git a/src/bdscript/setUserVar.md b/src/bdscript/setUserVar.md
index 49e54a61995..f0b1d56851e 100644
--- a/src/bdscript/setUserVar.md
+++ b/src/bdscript/setUserVar.md
@@ -13,5 +13,7 @@ $setUserVar[Variable name;New value;(User ID;Guild ID)]
- `Guild ID` `(Type: Snowflake || Flag: Optional)`: The guild to assign the new value to. Uses the current guild if no "Guild ID" is provided.
> 📝 User variable values have a max character limit of **4999**.
-
-> For more info, see the [Variables Guide](../guides/introduction/variables.md).
+
+```admonish info title="Read more"
+For more information, read the the [Variables Guide](../guides/introduction/variables.md).
+```
\ No newline at end of file
diff --git a/src/bdscript/shardID.md b/src/bdscript/shardID.md
index 28a12ac0643..8ee81347884 100644
--- a/src/bdscript/shardID.md
+++ b/src/bdscript/shardID.md
@@ -25,4 +25,8 @@ Shard: $shardID
verified: true
content: |
Shard: 1
+```
+
+```admonish info title="Read more"
+For more information, read the the ["Sharding" article](../resources/sharding.md).
```
diff --git a/src/bdscript/shardIDComplex.md b/src/bdscript/shardIDComplex.md
index 86b3574d52c..45255de2393 100644
--- a/src/bdscript/shardIDComplex.md
+++ b/src/bdscript/shardIDComplex.md
@@ -33,3 +33,7 @@ Shard: $shardID[$message]
```admonish question title="What is this?"
How [`$message`](./message.md) works?
```
+
+```admonish info title="Read more"
+For more information, read the the ["Sharding" article](../resources/sharding.md).
+```
\ No newline at end of file
diff --git a/src/bdscript/slashCommandsCount.md b/src/bdscript/slashCommandsCount.md
index fbd8561ef5e..94284c29c56 100644
--- a/src/bdscript/slashCommandsCount.md
+++ b/src/bdscript/slashCommandsCount.md
@@ -1,5 +1,9 @@
# $slashCommandsCount
Returns the number of [slash commands](../guides/general/interactions/slashCommands/aboutSlashCommands.md) the bot has enabled.
+
+```admonish info
+Counts only global slash commands.
+```
## Syntax
```
diff --git a/src/bdscript/splitText.md b/src/bdscript/splitText.md
index 210e821a32b..be9218aff2e 100644
--- a/src/bdscript/splitText.md
+++ b/src/bdscript/splitText.md
@@ -1,22 +1,41 @@
-# $splitText
-Retrieves a value from [`$textSplit[]`](./textSplit.md).
-
-> ⚠️ This function is used with `$textSplit[]`.
-
-## Syntax
-```
-$splitText[Index]
-```
-
-### Parameters
-- `Index` `(Type: HowMany || Flag: Required)`: The split value to get (e.g. `2` for the second split). You can also use `>` to return the last split value i.e `$splitText[>]`.
-
-## Example
-```
-$nomention
-$textSplit[Hi-Hello-Hey;-]
-$splitText[2]
-```
-> The above example will return output as `Hello`.
-
-> For more info, see the [Text Splitting Guide](../guides/general/textSplitting.md).
+# $splitText
+Each separated text has a number, i.e. an index. `$splitText` is a function that returns one of the elements of the separated text by an index or the sign `<` - the very first element, or `>` - the very last element.
+
+## Syntax
+```
+$splitText[Index]
+```
+
+### Parameters
+- `Index` `(Type: HowMany || Flag: Required)`: The split value to get (e.g. `2` for the second split). You can also use `>` to return the last split value i.e `$splitText[>]`.
+
+## Example
+
+```
+$nomention
+$textSplit[hello world !; ]
+> $splitText[<]
+> $splitText[2]
+> $splitText[>]
+```
+
+``` discord yaml
+- user_id: 803569638084313098
+ username: RainbowKey
+ color: "#E67E22"
+ content: |
+ !example
+- user_id: 1009018156494368798
+ username: BDFD Support
+ color: "#378afa"
+ bot: true
+ verified: true
+ content: |
+ Build powerful Discord bots without coding experience.
+Build powerful Discord bots without coding experience.
0 / 10000
+0 / 25000
``` diff --git a/src/terms.md b/src/terms.md index 0c46403229a..ec433d480f4 100644 --- a/src/terms.md +++ b/src/terms.md @@ -1,11 +1,7 @@ - - -# Terms of Service - -The Terms of Service for Bot Designer for Discord can be found at: - -**
+
@@ -341,4 +341,4 @@