Paste #59571: Broadcast Command v1

Date: 2019/11/03 16:02:25 UTC-08:00
Type: Denizen Script

View Raw Paste Download This Paste
Copy Link


### Broadcast Command
# Updated by Mwthorn (Discord: Mwthorn#2843) (Mail: mwthorn@gmail.com)
# Ask for help at any time on the Official Denizen Script Discord: https://discord.gg/Q6pZGSR
# Allows a user to broadcast a message to everyone. This is mainly just an example on how to make a command with Denizen.
# It has the following commands included:
# /bc (text) - Send a message to everyone (requires the permission "broadcast.use")

## Instructions:
# - Place the script in your script folder.
# - Restart server or reload scripts
# - Done! Now you can use /bc (text)

Broadcast_Command:
    type: command
    name: broadcast
    description: Broadcast something
    usage: /broadcast <&lt>text<&gt>
    debug: false
    aliases:
    - bc
    permission: broadcast.use
    permission message: Sorry, <player.name>, you don't have the permission '<permission>'!
    script:
    - if <context.args.size> == 0:
        - narrate "<&b>/bc (text)"
        - stop
    - announce "<context.args.get[1].to[<context.args.size>].space_separated.parse_color>"