Announce: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with " == Syntax == <pre>Announce( message, playerTo, type )</pre> == Arguments == * ''Player'' '''playerTo''' - The player to...") |
No edit summary |
||
Line 10: | Line 10: | ||
* ''string'' '''message''' - The message to send | * ''string'' '''message''' - The message to send | ||
* ''int'' '''type''' - The type of the message | * ''int'' '''type''' - The type of the message | ||
== Example == | |||
<pre>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()); | |||
} |
Revision as of 11:02, 27 August 2015
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()); }