server_cmd
native server_cmd(const command[], any:...);
| Parameter |
Description |
| command | Formatting rules |
| ... | Variable number of formatting parameters |
Queues a command to be executed from the server console.
Warning: This is a potential source of command injection. Do not feed
client-controlled input (including client names) to this function
without sanitizing it first.
The queued commands will be executed by the engine on the next frame.
If you require them to be executed immediately, see server_exec()
This function has no return value.