Jump to content

skript message not working


Acorniscute

Recommended Posts

so im making a /help but when i run the command it only shows the first line "Rules." does anyone know how to fix this?

command /help:
    Trigger:
        message "&4Rules:"
        message "&c1. No Spamming in Chat"
        message "&c2. No Spawnkilling"
        message "&c3. No Hacking (Killaura, Fly, etc.)"
        message "&cViolating these rules will result in a strike."
        message "&c2 Strikes and you will be permanently banned."
        message "       "
        message "&2Commands:"
        message "&a/sethome & /home"
        message "&a/tpa & /tpahere"
        message "&a/spawn"
        message "&a/help"

Link to comment
Share on other sites

Hey hey! I found two errors in your script:
1: The capitol T in "Trigger"
2: "message" should be replaced with "send"
Heres the updated script!
 

command /help:
    trigger:
        send "&4Rules:"
        send "&c1. No Spamming in Chat"
        send "&c2. No Spawnkilling"
        send "&c3. No Hacking (Killaura, Fly, etc.)"
        send "&cViolating these rules will result in a strike."
        send "&c2 Strikes and you will be permanently banned."
        send " "
        send "&2Commands:"
        send "&a/sethome & /home"
        send "&a/tpa & /tpahere"
        send "&a/spawn"
        send "&a/help"

In the updated version, I changed "message" to "send" to match the correct syntax used in most Minecraft scripting plugins. This should fix the issue and display all the lines in your "/help" command. Make sure to test it on your server and verify that it works as expected.

If I helped you at all please consider boosting my account with the follow button!
Minehut ♥ [VIP] 12/19/2020 - Present

I am either extremely active or not lol.

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...