SendChat: Difference between revisions

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search
(Created page with "{{Welcome| desc=This will run a .rec file which has to be saved in the npcscripts/recordings folder. The NPC will follow the actions recorded in the file.| params=<syntaxhighl...")
 
No edit summary
Tag: Manual revert
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Welcome|
{{Welcome|
desc=This will run a .rec file which has to be saved in the npcscripts/recordings folder. The NPC will follow the actions recorded in the file.|
desc=This will send a chat message to the server.|
params=<syntaxhighlight lang="lua">(text)</syntaxhighlight>
params=<syntaxhighlight lang="lua">(text)</syntaxhighlight>
<poem>::text : The text to send as chat message.</poem>|
<poem>::text : The text to send as chat message.</poem>|

Latest revision as of 04:06, 6 September 2024


Description:
This will send a chat message to the server.


Parameters:

(text)

text : The text to send as chat message.


Return Values:
This function does not return any specific values.


Example

function OnPlayerText(player, message)
{
	if(message=="Hello")
	{
	SendChat("Hi. How are you?");
	}
}

Related Functions

The following functions may be helpful as they relate to this function in one way or another.