Class ExprMessage

java.lang.Object
ch.njol.skript.lang.util.SimpleExpression<String>
ch.njol.skript.expressions.ExprMessage
All Implemented Interfaces:
Debuggable, Expression<String>, SyntaxElement

@Name("Message") @Description("The (chat) message of a chat event, the join message of a join event, the quit message of a quit event, or the death message on a death event. This expression is mostly useful for being changed.") @Examples({"on chat:","\tplayer has permission \"admin\"","\tset message to \"&c%message%\"","","on first join:","\tset join message to \"Welcome %player% to our awesome server!\"","","on join:","\tplayer has played before","\tset join message to \"Welcome back, %player%!\"","","on quit:","\tset quit message to \"%player% left this awesome server!\"","","on death:","\tset the death message to \"%player% died!\""}) @Since("1.4.6 (chat message), 1.4.9 (join & quit messages), 2.0 (death message)") @Events({"chat","join","quit","death"}) public class ExprMessage extends SimpleExpression<String>