Quick Start
Last updated
Was this helpful?
Last updated
Was this helpful?
This setup example will run you through setting up partnerships on your server.
First, you will need a channel for partnerships to be posted, for example #partnerships
. You might also want a channel for your partnerships to talk to eachother. We will call this one #pm-chat
.
In addition to this, we want our partnership managers to be identified by a coloured role that will give them access to the #partnerships
channel, lets call this one @Partner Manager
.
Now, lets configure the PM role and the partnerships channel by running the following commands: t.pm role @partner manager
and t.pmchannel add #partnerships
We also want our new partnership managers to be welcomed by TeamAPM when we make them a PM. We can set the welcome channel by sending: t.set welcomechannel pm #pm-chat
Now that these are all configured, lets create our welcome embed and our partnership embed.
First lets make a new custom embed named "welcome":
t.embed create welcome
We can then set the description of the new embed like so: t.embed edit welcome description Welcome to the team!
In this example, we want the message to also @ the partner manager, which we can do by sending:t.embed edit welcome content ${USER_MENTION}
Finally we can set this as the welcome embed by running:
t.embed use welcome pmwelcome
Now lets make the partnership embed. This will be sent when a partner manager sends an invite in the#partnerships
channel.
We will call this embed "partner":
t.embed create partner
We want this embed to tell the manager how many partnerships they have now made:t.embed edit partner description You have sent ${PM_SCORE} partnerships!
And lets set a title thanking the user: t.embed edit partner title Thanks for the partnership ${USERNAME}
To set the embed's role, we will do:
t.embed use partner partnership
Awesome! Now we can add a partner manager. We can do this by running the t.pm add @user
(where @user is replaced with the user you want to select).
If everything is set up, you will see our welcome embed posted in #pm-chat
And if they post an invite to #partnerships
, we will see the partnership embed too!
Congratulations, you've set up a basic partnership system for your server! For more advanced options and settings, check out the commands and settings lists in the following pages.