Announce
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
Announce( message, playerTo, type )
Arguments
- Player playerTo - The player to send the message to
- string message - The message to send
- int type - The type of the message
Example
function onPlayerCommand( player, cmd, text) { if (cmd == "ann")//*Made by crystal { if (!text) return ClientMessage("[#FF0000][Syntax]/ann <ID> <All/Nick/ID> <Text>", player, 0, 0, 0); if (split(text, " ").len() < 3) return ClientMessage("[#FF0000][Syntax]/ann <ID> <All/Nick/ID> <Text>", player, 0, 0, 0); local v = split(text, " "); if (v[1].tolower() == "all") AnnounceAll (text.slice(v[0].len() + v[1].len() + 2), v[0].tointeger()); else Announce (text.slice(v[0].len() + v[1].len() + 2), FindPlayer(v[1]), v[0].tointeger()); }