note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
SendCommand
Description
This will force the NPC to write a desired command, and this way, getting the effects it would produce.
Name | Description |
---|---|
commandtext[] | The command text to be sent by the NPC. |
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
- SendChat: Sends a text as the NPC.