19.09.2013, 20:34
ZCMD is recommended.
DCMD is just a macro of the default method (using strcmp which means slower).
Quote:
|
Originally Posted by ZCMD's Thread
This is just a little include that uses OnPlayerCommandText() to process players' commands. Each command has a separate function like in dcmd, but zcmd calls them directly via CallLocalFunction(). Such method is much faster than when you successively compare the text player entered to each command you have in your script (especially if he send a nonexistent cmd, you pass though all then) and its superiority over the old way is proportional to the number of commands.
|

