docs.goldendev.net Open in urlscan Pro
2606:4700:4400::ac40:93d1  Public Scan

Submitted URL: http://docs.goldendev.net/
Effective URL: https://docs.goldendev.net/
Submission: On April 09 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

GOLDEN BOT

Top.gg Page Bot Invite YouTube Tutorials Support/Community Server

Ask or SearchCtrl + K
 * 🔗Main Website
 * 🔗YouTube Tutorials
 * ℹ️Welcome/Navigating the Docs
    * ⚡Quick Start
    * 💻In-Depth Guide
    * 📋Make a Suggestion!

 * 📋Commands
 * ✅Guides
    * 💣Denukify System
    * 📫Tickets System
       * Configuration
       * Supporters Usage
       * Member Usage
   
    * 🤖Unverified Bots
    * 🚨Infractions System
    * 🖥️Management Features
    * 📄Embed Builder
    * 📋Reports System
    * 📒Suggestions System

 * 📃Update Logs
    * v1
       * v1.4
       * v.1.3
       * v1.2
       * v1.1
       * v1.0
          * v1.0.1
          * v1.0.2
          * v1.0.3
          * v1.0.4
          * v1.0.5
   
    * v0
       * v0.0.0

 * 📰Upcoming Updates
    * v2
       * v2.0

 * 📜Privacy Policy
 * 📜Terms of Service
 * Outdated Docs
    * 👋Thanks for choosing Golden Bot
    * ❓Why Golden Bot?
    * FAQs
    * Cons
    * Pros
    * Risks
    * Moderation
       * Infractions
   
    * Bot Commands
       * /suggest
       * /links, /help
       * /ping
   
    * Feature Abuse/Spam

Powered by GitBook


ℹ️WELCOME/NAVIGATING THE DOCS

Learn how to navigate the Golden Bot documentation

TOS + PRIVACY POLICY

Make sure you read over the bot's TOS and Privacy Policy before using the bot.
By using Golden Bot you agree to these terms and conditions.

WELCOME TO THE GOLDEN BOT DOCS!

This is where you can find everything you need to know in order to get Golden
Bot up and running on your server/guild! Please read this entire page if you're
new so that you understand how the documentation is structured and get a basic
understanding of all the resources available to you.

UNDER DEVELOPMENT

Currently, Golden Bot is under a lot of development and there are frequent
changes being made. I also have a lot of other commitments that are more
important to me than constantly maintaining the docs so some information may be
out of date with the rapid advancement. If there are any critical errors within
the docs please inform the team on the community/support Discord guild
immediately. https://support.goldendev.net

If you ever need to send someone a link to a specific portion of a page you can
find the # symbol next to the headings and that will set your page URL (which
you then copy) to take the individual that clicks the link directly to the
specified content.



IMPORTANT TERMINOLOGY

Throughout the docs, you will see various types of terminology that you may not
be familiar with yet so read this over carefully to ensure that you understand
what everything means and the differences.

   

 * STRING: you can think of a string as text. A string however has a limit on
   how many characters you can store in it at any time of 255.

   
   

 * TEXT: similar to a string but with unlimited length by default

   
   

 * BOOLEAN: officially true or false but you can think of it as yes or no, on or
   off

   
   

 * INTEGER: a number, "1, 2, 3, 4, 5, 6, 7, 8, 9, 10"

   
   

 * USER: a user is an account on Discord, it IS NOT a member of your guild, it
   is similar but completely separate. Think of it as who you talk to in DMs
   versus in servers. They have no roles and no guild-related data.

   
   

 * MEMBER: a member is a member of your guild (server). They may have roles,
   guild invites, permissions, etc. Think of the member as who you talk/interact
   with in a guild as they are a 'member' of the guild

   
   

 * GUILD: a guild is a Discord server. It is called a guild in most programming
   languages and in the official Discord documentation so get used to it being
   called a guild instead of a server, that's their official name.

   

UNDERSTANDING THE DOCS/COMMANDS

The documents are organized into various categories and areas to help make it
easier to find what you need...

COMMANDS:

CODE BLOCKS & COPY + ARGUMENTS:

Whenever you see a command in something called a 'code block' here on the docs
there are two different types of arguments you may see in the commands:
<required> & [optional]. An example might look like the warn command below which
tells you that "/warn" is the main command, "<user>" is required, and "[reason]"
is optional. If you'd like to copy the format from the code block directly to
your computer's clipboard just click the copy icon on the far right of a code
block.


Copy

/warn <user> [reason]

MORE ARGUMENTS:

There's also one more type of argument that some commands may ask for. These
arguments are in a list of options that you can choose from. Often in the docs,
I will represent these commands as type('a list of options here separated by
commas') or something similar based on what type of command so it may also be
select('a list of options here separated by commas') or any other number of
things but all following the same principles. Also, when it is a relatively
small/manageable list of options I may just include it in the command or here on
the docs there will be a list/expandable list of some sort on the specific
command's page which you can find all the commands that the bot offers in the
commands category of the docs. "humans" in this case means ALL users of a server
that aren't bots and "bots" means all users that are bots. There's also an
option of giving a role to everyone in this case with "all":


Copy

/role give multi <role> <type(humans, bots, all)> [reason]

UNDERSTANDING EXAMPLE COMMANDS:

The final important note on examples is how example command configurations are
displayed. What this means is how to understand the ways it may look different
between the examples and how you should execute the command on your server.
Below is an example configuration for the "/role create" command and so when you
try to do the command on your server you will essentially do the main command,
then set the name of the role, then select the permissions option and what you'd
put in the permissions slot is the "SEND_MESSAGES, MANAGE_CHANNELS" for the sake
of this example. You may either do the ", " between each permission or just the
"," if you'd prefer, either way, will work fine.


Copy

/role create <name> permissions: SEND_MESSAGES, MANAGE_CHANNELS

SUBCOMMANDS:

Below is a different type of Slash Command called a Subcommand. A Subcommand is
made up of two main parts. There's the main command in this case "/role" and
then a space followed by "give" which in this case is the Subcommand. Keep in
mind there can be up to 2 subcommands in a command as well although it is most
often just the main command or a single Subcommand. In this case "multi" is the
2nd Subcommand. I have also included the arguments for both commands here just
as an example but the focus is the first part of both commands.

SINGLE SUBCOMMAND:


Copy

/role give <role> <user> [reason]

DOUBLE SUBCOMMAND:


Copy

/role give multi <role> <type(humans, bots, all)> [reason]

WANT TO JUMP RIGHT IN?

Feeling like an eager beaver? Jump into the quick start docs and get started
with the basics:

⚡pageQuick Start
WANT TO DIVE DEEP?

Dive a little deeper and start exploring the in-depth docs for Golden Bot, to
achieve your guild's full potential. It is highly recommended that you read over
the Quick Start guide first as it is quick and it is a good foundation for
understanding the rest of the docs/bot:

💻pageIn-Depth Guide
NextQuick Start

Last updated 11 months ago

On this page
 * Welcome to the Golden Bot docs!
 * Important terminology
 * Understanding the Docs/Commands
 * Commands:
 * Subcommands:
 * Want to jump right in?
 * Want to dive deep?

Was this helpful?