NPC:SendCommand
Description:
Function NPC:SendCommand force the NPC to write a desired command, and this way, getting the effects it would produce.
Function NPC:SendCommand was added in 0.3 and will not work in earlier versions! |
Parameters:
(commandtext[])
string | commandtext | The command text to be sent by the NPC. |
Return Values:
This function does not return any specific values.
Examples:
public OnPlayerText(playerid, text[]) { if (strfind(text, "stupid bot") != -1) { new string[80], name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name, sizeof(name)); SendCommand("/kill"); format(string, sizeof(string), "Hey %s! You are so mean, you make me so sad!", name); SendChat(string); } return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- NPC:SendChat: Sends a text as the NPC.