I need a small plugin similar to your /msg or /tell from nucleus but would send raw text to a player rather then prefixing it with : http://prntscr.com/f8w99w
[Server -> me]
having its own custom prefix would be fine also if its configurable but it just needs to be something i can use to send to a player without it being broadcasted to the rest of the players.
What about /tellraw?
normally that’d work i believe but im not using command blocks for it and to use it in a combination of several commands being ran at once with the alias plugin. so something like
“starter1” {
alias=“givestarter1 {0}”
commands=[
“tellraw {0} {“text”:“test”}”,
“starter1 {0}”
]
permission=“alias.example”
}
}
will not work.
why not? you should be able to escape the " in the config, i think it’s with \? (not sure)
"starter1" {
alias="givestarter1 {0}"
commands=[
"tellraw {0} {\"text\":\"test\"}",
"starter1 {0}"
]
permission="alias.example"
}
You can also use triple quotes.
commands = [
"""tellraw {0} {"text":"test","color":"red"}"""
]