NPC:SendCommand
From SA-MP Wiki
Description:
This will force the NPC to write a desired command, and this way, getting the effects it would produce.
(commandtext[])
commandtext[] | The command text to be sent by the NPC. |
Return Values:
This function does not return any specific values.
Example Usage:
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.