Quote:
Originally Posted by ConnorMcLeod
Which kind of command ?
If you don't want the ping delay and if you don't need amxx to catch the command you can just use engclient_cmd, command is straightly sent to engine.
|
Example this command nosound 1
In one of forward I want to send this
PHP Code:
public forward_pre(id) client_cmd(0, "nosound 1")
And this
PHP Code:
public forward_post(id)
{
client_cmd(0, "nosound 0")
emit_sound(...)
}
But command nosound 1 and nosound 0 income to client is not at the time.
emit_sound income to client earlier than command nosound 0