OnPlayerText
Revision as of 15:52, 9 March 2022 by 157.46.138.66 (talk)
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); } }