Executing console commands

From Valve Developer Community
Revision as of 18:24, 21 March 2009 by Steveukpwnz (talk | contribs) (New page: == Executing command on client == If you wish to execute a console command on a client from the server use: <code>engine->ClientCommand( edict(), "command", ... );</code> Where edict() is...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Executing command on client

If you wish to execute a console command on a client from the server use: engine->ClientCommand( edict(), "command", ... ); Where edict() is your ent's edict, "command" would be replaced by your concommand, followed by any formatted vars (same as printf). This would be useful for showing a team selection menu.