Signature
native server_cmd(const command[], any:...);
Description
Queues a command to be executed from the server console.
Notes
-
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()
Parameters
- command — Formatting rules
- ... — Variable number of formatting parameters
No return value