πŸ’¬Chat

Makes spoofed players send messages, reply to them, and greet new players. It keeps the game's chat lively and makes the community feel more active.

Configuration Information

enabled - This determines whether the module is active (true) or inactive (false).

settings - This section sets the probability (as a percentage) of sending welcome messages, chat messages, and responses, all set to 100.

welcome-delay - This configures the minimum and maximum delay in seconds before sending a welcome message.

chat-delay - This sets the minimum and maximum delay before sending a chat message.

response-delay - This defines the minimum and maximum delay before sending a response message.

welcome-messages - Lists the messages that can be sent as a welcome to new players.

chat-messages - Lists the messages that can be sent in general chat.

responses - Sets up responses to specific greetings, with different reply options listed.

modules/chat/config.yml
# This module makes spoofed players send messages,
# respond to messages and welcome other people.
#
# Useful if you want to get engagement into your server.

enabled: true

settings:
    welcome-message-chance: 100
    chat-message-chance: 100
    response-message-chance: 100

welcome-delay:
    min: 1
    max: 10

chat-delay:
    min: 1
    max: 10

response-delay:
    min: 1
    max: 10

welcome-messages:
    - "welcome man"
    - "welcome %player%"

chat-messages:
    - "hello everyone"
    - "wsg guys"

responses:
    hi:
        search-for:
            - "hi"
            - "hey"
            - "wsg"
            - "hello"
            - "whats up"
            - "what's up"
            - "whats up guys"
            - "what's up guys"
        responses:
            - "wsg %player%"
            - "what's up man"
            - "hyd"