Mimu Bot
  • overview
  • command list
  • ⚙️Settings
    • getting started
      • currency / economy
      • activity + pick spawn
      • greet / leave / boost messages
      • deny commands
      • custom formatting
  • Currency System
    • getting started
    • setting up a server shop
  • 💸global currency
    • tickets
      • pets
        • taking care of your pet
    • stars
      • activity classes
  • autoresponder
    • your first autoresponder
    • guides
      • beginner i: using simple placeholders
      • beginner ii: using simple functions
      • intermediate i: ranges and making choices
      • intermediate ii: locked choices
      • advanced i: different matchmodes
      • advanced ii: using user arguments
      • advanced iii: modifying inventory and using args
      • expert i: static button responders
      • expert ii: instanced button responders
    • resources
      • variables - placeholders & functions
      • examples
        • custom currency command examples
          • .bake command
          • .bake command with items
          • .harvest command
          • .stealcookie command
          • .crime command
          • .steal [user] [amount] command
          • .sell command
        • manager/moderation commands
          • self-verification system
            • click a button to verify
            • type "i agree" to verify
          • manual verification system
          • self assignable roles
            • button roles
            • command roles (type +role)
            • command x button roles
          • .roleadd [user] [role] command
          • antiswear/blacklisted words
          • anti link/advertising
          • change to appropriate nickname command
          • .setnick [user] [nickname] command
          • click to disable pings (e.g. partner pings)
        • utility/fun commands
          • .serverinfo command
          • .nick [nickname] command
          • .suggest [text] command
          • .say commands
          • embed reaction command
          • embed action command (user arguments)
          • partner manager reward system
          • would you rather/.topic command
          • .poke [user] command
          • .8ball [text] command
          • mimu, rate [thing] command
          • .muteroulette [user] [user]... command
  • 🛄embeds
    • your first embed
    • embed guide
      • general/nonspecific embed
      • greet/welcome embed
      • leave/goodbye embed
      • rules embed
      • boost embed
  • 🔗quick links
    • ♡ support server
    • ♡ status page
    • ♡ feedback site
  • other
    • [03/2024] v8.10 - leaving patreon and restructuring supporter tiers
      • changelog & details
      • terms of purchasing, refunds, etc.
      • swapping over as an existing patron: early patron badge & more!
      • why are you moving away? what about the donation site?
Powered by GitBook
On this page
  • now that you've completed your permissions, we are going to make a button responder.
  • finally, use the /send command to make a message in #disable-ping which allows them to click the button.

Was this helpful?

  1. autoresponder
  2. resources
  3. examples
  4. manager/moderation commands

click to disable pings (e.g. partner pings)

Previous.setnick [user] [nickname] commandNextutility/fun commands

Last updated 1 year ago

Was this helpful?

in order to do this, first, we're going to make a role called "disable partner pings".

then, we're going to first create two different channels:

  1. #partners channel -- this is the channel where you send the partnered servers and ping everyone.

    1. for this channel, we're going to go to the channel settings, edit channel permissions, and make three adjustments:

      1. for the @everyone role, keep it at "/" for "view channel", but turn off "send messages"

  2. #disable-ping channel

now that you've completed your permissions, we are going to make a button responder.

here's the command

/buttonresponder addname:partner_disable reply:{addrole: @disable partner pings !}{embed} - you have disabled partner pings ♡ label:click to disable partner ping emoji::icon_disabled: color:grey

by putting {addrole: @role}, it will add the disable ping role, which, if we did the permissions correctly in the previous step, will allow disabling of the ping.

you can also attach a second button to re-enable pings if you want, which works in a similar fashion. just remember to add {addbutton:partner_enable} into your /send command as well.

/buttonresponder addname:partner_enable reply:{removerole: @disable partner pings !}{embed} - you have re-enabled partner pings ! thank you for supporting our server label:click to enable partner pings emoji::icon_enabled: color:blue

finally, use the /send command to make a message in #disable-ping which allows them to click the button.

/send content:{embed} please click the button below to disable pings if you don't want to be pinged anymore ! {addbutton:partner_disable} channel:#disable-ping

add the role disable partner pings and turn off "view channel"

the completed disable pings example
disable partner pings role creation
it should look like this
the command in completion
the completed send command