跳至主要内容

SendRconCommand

Description

Sends an RCON (Remote Console) command.

NameDescription
const format[]The RCON command to be executed.
OPEN_MP_TAGS:...Indefinite number of arguments of any tag.

Returns

This function always returns 1.

Examples

SendRconCommand("gmx");
// This is a scripted version of typing "/rcon gmx" in-game.
// GMX restarts the game mode.

// Example using format()
new szMapName[] = "Los Santos";
new szCmd[64];
format(szCmd, sizeof(szCmd), "mapname %s", szMapName);
SendRconCommand(szCmd);

// PRO TIP: You don't need `format` in open.mp
SendRconCommand("game.map %s", szMapName);

Notes

注意
  • Does not support login, due to the lack of a 'playerid' parameter.
  • 'password 0' will remove the server's password if one is set.
  • This function will result in OnRconCommand being called.
資訊