warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
SendRconCommand
Description
Sends an RCON (Remote Console) command.
Name | Description |
---|---|
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
warning
- 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.
info
See config.json
Related Functions
- IsPlayerAdmin: Checks if a player is logged into RCON.
Related Callbacks
- OnRconCommand: Called when an RCON command is sent.
- OnRconLoginAttempt: Called when an attempt to login to RCON is made.