OnPlayerText

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search


Description:
This function is called when any player text something to server using console. The function is called even if NPC sends a text to server using SendChat


Parameters:

(playerid, message)

playerid: The player who send the text to server.
message: The message the player send to server.


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


Example

function OnPlayerText(playerid, message)
{
	if(message=="come")
	{
	print("Going to player: "+playerid+"\n");
	SendCommand("goto "+playerid);
	}
}