Send Message to server

Discussion in 'Plugin Development' started by iDerHeilige, Nov 1, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    iDerHeilige

    Hey Guys.....
    How i can broadcast a Message to all Users on the Server?
    i want to chose also the Prefix and the Color.....
     
  2. Offline

    fireblast709

    Like this. Colouring by "ChatColor.[color name]"
    Code:java
    1. Bukkit.broadcastMessage("Roses are "+ChatColor.RED+"red "+ChatColor.WHITE+"and violets are "+ChatColor.BLUE+" blue");
     
  3. Offline

    Unscrewed

    Basically what fireblast709 said.
    For the prefix you could do something like this..
    Code:java
    1.  
    2. String prefixName = "ChatColor.RED + [SuperCoolBroadCastPrefix] ";
    3. Bukkit.broadcastMessage(prefixName + "Hello!");
    4.  
     
Thread Status:
Not open for further replies.

Share This Page