Pular para o conteúdo principal

SendCommand

Description

This will force the NPC to write a desired command, and this way, getting the effects it would produce.

NameDescription
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;
}